-
Notifications
You must be signed in to change notification settings - Fork 424
/
package.json
111 lines (111 loc) · 3.49 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
{
"name": "slickgrid",
"version": "5.14.2",
"description": "A lightning fast JavaScript grid/spreadsheet",
"main": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"node": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
},
"./dist/styles/*": "./dist/styles/*",
"./package.json": "./package.json"
},
"module": "./dist/esm/index.js",
"directories": {
"example": "examples",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/6pac/SlickGrid.git"
},
"keywords": [
"slickgrid",
"grid"
],
"author": "Michael Leibman <[email protected]>",
"contributors": [
"Ben McIntyre <[email protected]>",
"Ghislain B."
],
"license": "MIT",
"bugs": {
"url": "https://github.com/6pac/SlickGrid/issues"
},
"homepage": "https://github.com/6pac/SlickGrid#readme",
"scripts": {
"clean": "rimraf dist",
"cypress": "npx cypress open --config-file cypress/cypress.config.ts",
"cypress:ci": "npx cypress run --config-file cypress/cypress.config.ts",
"predev": "rimraf --glob dist/{browser,esm}",
"dev": "node ./scripts/dev-watch.mjs --open",
"dev:vite": "npm run dev --workspace=vite-demo",
"serve": "node ./scripts/dev-watch.mjs --serve",
"serve:demo": "http-server ./ -p 8080 -a localhost -s",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"minify": "node ./scripts/minify.js --start",
"prebuild:prod": "rimraf dist && npm run lint",
"build:prod": "node ./scripts/builds.mjs --prod",
"build:types": "tsc --emitDeclarationOnly --incremental --declarationMap --outDir dist/types",
"preview:release": "node ./scripts/release.mjs --create-release github --dry-run --skip-checks",
"release": "node ./scripts/release.mjs --create-release github",
"presass:build": "rimraf dist/styles/css",
"sass:build": "sass src/styles:dist/styles/css --style=compressed --quiet-deps --no-source-map",
"postsass:build": "postcss dist/styles/css/**/* --dir dist/styles/css --base dist/styles/css --no-map --use cssnano --use autoprefixer --style=compressed",
"sass:copy": "copyfiles -f src/styles/*.scss dist/styles/sass"
},
"dependencies": {
"sortablejs": "^1.15.3"
},
"devDependencies": {
"@4tw/cypress-drag-drop": "^2.2.5",
"@octokit/rest": "^21.0.2",
"@parcel/watcher": "^2.5.0",
"autoprefixer": "^10.4.20",
"browser-sync": "^3.0.3",
"conventional-changelog": "^6.0.0",
"copyfiles": "^2.4.1",
"cssnano": "^7.0.6",
"cypress": "^13.15.2",
"cypress-real-events": "^1.13.0",
"dotenv": "^16.4.5",
"esbuild": "^0.24.0",
"eslint": "^9.15.0",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-n": "^17.13.2",
"git-url-parse": "^15.0.0",
"globals": "^15.12.0",
"http-server": "^14.1.1",
"new-github-release-url": "^2.0.0",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"rimraf": "^5.0.10",
"sass": "^1.81.0",
"semver": "^7.6.3",
"strong-log-transformer": "^2.1.0",
"tinyexec": "^0.3.1",
"tinyglobby": "^0.2.10",
"tinyrainbow": "^1.2.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0",
"yargs": "^17.7.2"
},
"workspaces": [
"vite-demo",
"src"
],
"browserslist": [
"last 2 version",
"> 0.5%",
"not dead"
],
"engines": {
"node": ">=18.0.0"
}
}