-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@nevent/sdks",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"description": "Nevent JavaScript/TypeScript SDK monorepo",
"repository": {
"type": "git",
"url": "https://github.com/nevent/nev-sdks.git"
},
"keywords": [
"nevent",
"sdk",
"javascript",
"typescript",
"newsletter",
"subscriptions",
"chatbot"
],
"scripts": {
"dev": "npm run build:core && npm run build:subscriptions -- --watch",
"build": "npm run build:core && npm run build:subscriptions && npm run build:chatbot",
"build:core": "cd packages/core && npm run build",
"build:subscriptions": "cd packages/subscriptions && npm run build",
"build:chatbot": "cd packages/chatbot && npm run build",
"test": "vitest run",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"typecheck": "cd packages/core && npm run typecheck && cd ../subscriptions && npm run typecheck && cd ../chatbot && npm run typecheck",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"sri": "node scripts/generate-sri.js",
"clean": "rm -rf packages/*/dist packages/*/*.tsbuildinfo",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "npm run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^1.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^8.0.3",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^1.2.2"
},
"engines": {
"node": ">=18.0.0"
}
}