-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 2.86 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
{
"name": "root",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "lerna run build",
"build:doc": "lerna run --parallel build:doc",
"build:watch": "lerna run --parallel build -- --watch",
"clean": "lerna clean -y && lerna run --parallel clean",
"lint": "lerna run --parallel lint",
"lint:commit": "commitlint --verbose --edit",
"lint:fix": "lerna run --parallel lint -- --fix",
"prepare": "npm run build && husky install",
"start": "lerna run start",
"test": "lerna run --parallel test",
"test:changelog": "node --test scripts/changelog/*.test.mjs",
"versions:sync": "node scripts/sync-sdk-versions.mjs",
"versions:check": "node scripts/sync-sdk-versions.mjs --check",
"ci:js": "npm run versions:check && npm run build && npm run lint",
"release:check": "npm run versions:check && npm run build && npm run lint",
"examples:build": "npm run build --workspace=examples/example-browser && npm run build --workspace=examples/example-react && npm run build --workspace=examples/example-vue && npm run build --workspace=examples/example-svelte && npm run build --workspace=examples/example-angular && npm run build --workspace=examples/example-ionic",
"examples:lint": "npm run lint --workspace=examples/example-browser && npm run lint --workspace=examples/example-react && npm run lint --workspace=examples/example-vue && npm run lint --workspace=examples/example-svelte && npm run lint --workspace=examples/example-angular && npm run lint --workspace=examples/example-ionic",
"examples:check": "npm run examples:lint && npm run examples:build",
"docs:reference:update": "node scripts/update-public-docs-reference.mjs",
"docs:reference:check": "node scripts/update-public-docs-reference.mjs --check",
"docs:reference:coverage": "node scripts/update-public-docs-reference.mjs --check-capabilities",
"verify:release": "node scripts/verify-release.mjs",
"size:sdks": "node scripts/report-sdk-sizes.mjs",
"upgrade:all": "npm-upgrade && lerna exec --concurrency 1 npm-upgrade",
"preversion": "npm run clean && npm i && npm run versions:check && npm run lint && npm run build && npm run test",
"version": "lerna version && npm run build && npm run push:release",
"push:release": "git push origin HEAD && for t in $(git tag --points-at HEAD); do git push origin \"refs/tags/$t\"; done"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.22.5"
},
"packageManager": "npm@10.8.2",
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@tsconfig/svelte": "^5.0.2",
"husky": "^8.0.3",
"lerna": "^8.1.8",
"svelte-check": "^4.0.0",
"svelte-preprocess": "^5.0.4",
"typescript": "^5.2.2"
}
}