-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
115 lines (115 loc) · 5.17 KB
/
package.json
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "slickgrid-universal",
"private": true,
"license": "MIT",
"author": "Ghislain B.",
"homepage": "https://github.com/ghiscoding/slickgrid-universal",
"repository": {
"type": "git",
"url": "git+https://github.com/ghiscoding/slickgrid-universal.git"
},
"bugs": {
"url": "https://github.com/ghiscoding/slickgrid-universal/issues"
},
"scripts": {
"prebuild": "pnpm lint",
"build": "lerna run build --stream && vue:build",
"build:common": "pnpm -r --stream --filter=./packages/common run build",
"prebundle": "pnpm clean && pnpm lint",
"bundle": "pnpm build:esm && lerna run bundle --stream",
"bundle:common": "pnpm -r --stream --filter=./packages/common run bundle",
"prebundle:zip": "pnpm bundle",
"bundle:zip": "pnpm -r --stream --filter=./packages/** run bundle:zip",
"build:demo": "pnpm -r --stream build:demo",
"clean": "rimraf --glob packages/*/dist packages/*/tsconfig.tsbuildinfo",
"cypress": "cypress open --config-file test/cypress.config.ts",
"cypress:ci": "cypress run --config-file test/cypress.config.ts",
"build:esm": "tsc --build ./tsconfig.packages.json",
"build:watch": "tsc --build ./tsconfig.packages.json --watch",
"predev": "pnpm run build:esm && pnpm run -r --filter=./packages/common sass:copy",
"dev": "run-p dev:watch vite:watch",
"predev:vue": "pnpm vue:build:framework",
"dev:vue": "run-p dev:watch vue:watch:framework vue:watch:demo",
"dev:watch": "lerna watch --no-bail --file-delimiter=\",\" --glob=\"src/**/*.{ts,scss}\" --ignored=\"**/*.spec.ts\" -- cross-env-shell pnpm run -r --filter $LERNA_PACKAGE_NAME dev",
"vite:watch": "pnpm -r --parallel run vite:dev",
"preview:publish": "lerna publish from-package --dry-run --yes",
"preview:version": "lerna version --dry-run --yes",
"preview:roll-new-release": "pnpm bundle && pnpm new-version --dry-run && pnpm new-publish --dry-run",
"beta-release": "lerna publish 5.0.0-beta.2 --dist-tag beta",
"new-version": "lerna version",
"new-publish": "lerna publish from-package",
"roll-new-release": "pnpm bundle && pnpm new-version && pnpm new-publish",
"serve:demo": "servor ./website index.html 8888",
"build:dev": "pnpm -r --filter=./examples/vite-demo-vanilla-bundle build:dev",
"serve:vite": "pnpm -r --filter=./examples/vite-demo-vanilla-bundle dev",
"lint": "eslint --cache .",
"lint:fix": "eslint --fix .",
"lint:no-cache": "eslint .",
"prettier:check": "prettier --check {frameworks,demos,examples}/**/*.{js,ts,vue}",
"prettier:write": "prettier --write {frameworks,demos,examples}/**/*.{js,ts,vue}",
"test": "vitest --config ./test/vitest.config.mts",
"test:coverage": "vitest --no-watch --coverage --config ./test/vitest.config.mts",
"test:watch": "vitest --config ./test/vitest.config.mts",
"test:ui": "vitest --ui --config ./test/vitest.config.mts",
"prepare": "husky",
"commitlint": "commitlint --edit",
"vue:install": "pnpm install --filter=./frameworks/slickgrid-vue --filter=./packages",
"vue:build": "pnpm vue:build:framework && pnpm vue:build:demo",
"vue:build:framework": "pnpm -r --stream --filter=./frameworks/slickgrid-vue/** run vue:build",
"vue:build:demo": "pnpm -r --stream --filter=./demos/vue/** run vue:build",
"vue:watch:framework": "pnpm -r --stream --filter=./frameworks/slickgrid-vue/** run vue:dev",
"vue:watch:demo": "pnpm -r --stream --filter=./demos/vue/** run vue:dev",
"vue:cypress": "pnpm -r --stream --filter=./demos/vue/** run vue:cypress",
"vue:serve": "pnpm -r --stream --filter=./demos/vue/** run vue:preview"
},
"comments": {
"new-version": "To create a new version with Lerna-Lite, simply run the following script (1) 'roll-new-release'.",
"devDependencies": "The dev deps 'slickgrid', 'sortablejs' and 'whatwg-fetch' are simply installed for Vitest unit tests."
},
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"packageManager": "[email protected]",
"devDependencies": {
"@4tw/cypress-drag-drop": "^2.2.5",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@formkit/tempo": "^0.1.2",
"@lerna-lite/cli": "^3.10.1",
"@lerna-lite/publish": "^3.10.1",
"@lerna-lite/run": "^3.10.1",
"@lerna-lite/watch": "^3.10.1",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^3.0.0-beta.2",
"@vitest/eslint-plugin": "^1.1.16",
"@vitest/ui": "^3.0.0-beta.2",
"conventional-changelog-conventionalcommits": "^7.0.2",
"cross-env": "^7.0.3",
"cypress": "^13.16.1",
"cypress-real-events": "^1.13.0",
"dotenv": "^16.4.7",
"eslint": "^9.17.0",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-n": "^17.15.0",
"globals": "^15.13.0",
"happy-dom": "^15.11.7",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"jsdom-global": "^3.0.2",
"npm-run-all2": "^7.0.1",
"pnpm": "^9.15.0",
"prettier": "^3.4.2",
"rimraf": "^5.0.10",
"rxjs": "^7.8.1",
"servor": "^4.0.2",
"sortablejs": "^1.15.6",
"typescript": "~5.6.2",
"typescript-eslint": "^8.18.0",
"vitest": "^3.0.0-beta.2",
"whatwg-fetch": "^3.6.20"
},
"funding": {
"type": "ko_fi",
"url": "https://ko-fi.com/ghiscoding"
}
}