-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
125 lines (125 loc) · 4.81 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
116
117
118
119
120
121
122
123
124
125
{
"name": "solid-simple-table",
"version": "2.0.0",
"description": "blazing fast reactive table component that gives you freedom",
"homepage": "https://github.com/aminya/solid-simple-table#readme",
"bugs": {
"url": "https://github.com/aminya/solid-simple-table/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aminya/solid-simple-table.git"
},
"license": "MIT",
"author": "Amin Yahyaabadi <[email protected]>",
"main": "dist/SimpleTable.mjs",
"source": "src/SimpleTable.tsx",
"types": "dist/SimpleTable.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"benchmark": "cross-env NODE_ENV=production parcel serve --target benchmark ./benchmark/index.html --open --no-hmr",
"build": "run-s clean && run-p build.parcel build.types",
"build.parcel": "cross-env NODE_ENV=production parcel build --target main && run-s build.style",
"build.style": "babel ./dist/SimpleTable.mjs --keep-file-extension --out-dir dist --config-file ./babel.style.config.json --retain-lines",
"build.types": "tsc -p ./tsconfig.json --emitDeclarationOnly",
"clean": "shx rm -rf ./dist/",
"demo.complex": "cross-env NODE_ENV=production parcel serve ./demo/complex/index.html --dist-dir ./demo/complex/dist --open",
"demo.simple": "cross-env NODE_ENV=production parcel serve ./demo/simple/index.html --dist-dir ./demo/simple/dist --open",
"demo.simple.build": "cross-env NODE_ENV=production parcel build --target demo ./demo/simple/index.html && node ./other/inline.js ./demo/simple/dist && shx cp ./demo/simple/dist/index.html .",
"demo.variable-rows": "cross-env NODE_ENV=production parcel serve ./demo/variable-rows/index.html --dist-dir ./demo/variable-rows/dist --open",
"demo.variable-rows.build": "cross-env NODE_ENV=production parcel build --target demo-variable-rows ./demo/variable-rows/index.html --no-optimize && node ./other/inline.js ./demo/variable-rows/dist && shx cp ./demo/variable-rows/dist/index.html .",
"dev": "cross-env NODE_ENV=development parcel watch --target main src/SimpleTable.tsx",
"format": "run-s lint.prettier",
"lint": "run-p --aggregate-output --continue-on-error lint.cspell lint.eslint lint.prettier lint.tsc",
"lint.cspell": "cspell lint --no-progress --show-suggestions --cache --cache-location ./.cache/cspell/.cspellcache",
"lint.eslint": "eslint **/*.{ts,tsx,js,jsx,cjs,mjs,json,yaml} --no-error-on-unmatched-pattern --cache --cache-location ./.cache/eslint/ --fix",
"lint.prettier": "prettier --list-different --write .",
"lint.tsc": "tsc --noEmit",
"prepare": "pnpm run build",
"test": "cross-env jest --coverage"
},
"prettier": "prettier-config-atomic",
"dependencies": {
"babel-preset-solid": "~1.6.1",
"solid-js": "~1.6.1"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/plugin-transform-modules-commonjs": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@iwatakeshi/babel-plugin-remove-import-styles": "^1.0.5",
"@parcel/core": "^2.8.0",
"@parcel/optimizer-esbuild": "^2.8.0",
"@parcel/packager-ts": "2.8.0",
"@parcel/transformer-less": "2.8.0",
"@parcel/transformer-typescript-types": "2.8.0",
"@types/chance": "^1.1.3",
"@types/jest": "^29.2.2",
"@types/node": "18.11.9",
"babel-jest": "^29.3.1",
"chance": "^1.1.9",
"cross-env": "^7.0.3",
"cspell": "^6.14.1",
"eslint": "^8.10.0",
"eslint-config-atomic": "^1.18.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"less": "^4.1.3",
"npm-run-all2": "^6.0.4",
"parcel": "^2.8.0",
"prettier": "^2.7.1",
"prettier-config-atomic": "^3.1.0",
"shx": "^0.3.4",
"solid-jest": "^0.2.0",
"typescript": "4.8.4",
"web-resource-inliner": "^6.0.1"
},
"engines": {
"browsers": "Chrome 76"
},
"alias": {
"solid-js": "solid-js/dist/solid.js",
"solid-js/web": "solid-js/web/dist/web.js"
},
"benchmark": "./benchmark/dist/index.html",
"demo": "./demo/simple/dist/index.html",
"demo-variable-rows": "./demo/variable-rows/dist/index.html",
"pnpm": {
"overrides": {
"eslint": "^8.10.0",
"core-js": "3.26.0",
"core-js-pure": "3.26.0",
"babel-eslint": "npm:@babel/eslint-parser"
}
},
"targets": {
"main": {
"context": "browser",
"includeNodeModules": false,
"engines": {
"browsers": "last 2 versions"
},
"isLibrary": true,
"optimize": true,
"outputFormat": "esmodule"
},
"demo": {
"context": "browser",
"includeNodeModules": true
},
"demo-variable-rows": {
"context": "browser",
"includeNodeModules": true
},
"benchmark": {
"context": "browser",
"includeNodeModules": true
}
}
}