-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 2.29 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
{
"name": "simple-html",
"version": "5.0.0-next.97",
"description": "UI components without dependencies",
"scripts": {
"start": "ts-node config_devserver",
"build:demo": "ts-node config_demo_build",
"build:all": "node ./scripts/build",
"clean:dist": "node ./scripts/clean",
"publish:all": "npm publish --workspace packages/grid",
"publish:test": "npm publish --workspace packages/grid --dry-run",
"typecheck": "node typecheck",
"eslint": "npm run eslint:run:packages",
"eslint:run:packages": "eslint --fix ./packages/**/*.ts",
"prettier:run": "prettier --write \"packages/**/*.ts\" \"samples/**/*.ts\"",
"test": "npm run test --workspaces",
"test:watch": "npm run test:watch --workspaces",
"release": "standard-version --prerelease next",
"release-test": "standard-version --dry-run --prerelease next",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major",
"release:next": "standard-version --prerelease next",
"typedoc-grid": "npx typedoc --tsconfig tsconfig-typedoc.json --cleanOutputDir --out docs/grid ./packages/grid/src/index.ts ./packages/grid/src/datasource/grouping.ts ./packages/grid/src/datasource/filter.ts ./packages/grid/src/datasource/selection.ts ./packages/grid/src/datasource/sort.ts ./packages/grid/src/datasource/types.ts ./packages/grid/src/grid/gridConfig.ts ./packages/grid/src/grid/gridInterface.ts ./packages/grid/src/datasource/dataSource.ts ./packages/grid/src/grid/grid.ts"
},
"author": "Vegar Ringdal",
"license": "MIT",
"standard-version": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"esbuild": "0.24.0",
"esbuild-helpers": "2.0.1",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"lit-html": "3.2.1",
"prettier": "3.3.3",
"standard-version": "9.5.0",
"ts-node": "10.9.2",
"typedoc": "0.26.10",
"typescript": "5.6.3",
"vitest": "2.1.3"
},
"workspaces": [
"packages/grid"
]
}