-
Notifications
You must be signed in to change notification settings - Fork 477
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.82 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.82 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@visactor/vtable-editors",
"version": "1.23.0",
"description": "",
"sideEffects": false,
"main": "cjs/index.js",
"module": "es/index.js",
"types": "es/index.d.ts",
"files": [
"cjs",
"es",
"dist"
],
"license": "MIT",
"exports": {
".": {
"require": "./cjs/index.js",
"import": "./es/index.js"
}
},
"scripts": {
"compile": "tsc --noEmit",
"eslint": "eslint --debug --fix src/",
"build": "npm run fix-memory-limit && bundle",
"dev": "bundle --clean -f es -w",
"test-cov": "jest -w 16 --coverage",
"test-live": "npm run test-watch __tests__/unit/",
"test-watch": "DEBUG_MODE=1 jest --watch",
"fix-memory-limit": "cross-env LIMIT=10240 increase-memory-limit"
},
"dependencies": {},
"devDependencies": {
"cross-env": "^7.0.3",
"increase-memory-limit": "^1.0.7",
"@internal/bundler": "workspace:*",
"@internal/eslint-config": "workspace:*",
"@internal/ts-config": "workspace:*",
"@rushstack/eslint-patch": "~1.1.4",
"eslint": "~8.18.0",
"vite": "3.2.6",
"typescript": "4.9.5",
"@types/jest": "^26.0.0",
"@types/node": "*",
"@types/offscreencanvas": "2019.6.4",
"husky": "7.0.4",
"jest": "^26.0.0",
"jest-electron": "^0.1.12",
"lint-staged": "12.3.7",
"magic-string": "^0.25.7",
"react-device-detect": "^2.2.2",
"ts-jest": "^26.0.0",
"ts-loader": "9.2.6",
"ts-node": "10.9.0",
"tslib": "2.3.1",
"tslint": "5.12.1"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://www.visactor.io",
"bugs": "https://github.com/VisActor/VTable",
"repository": {
"type": "git",
"url": "https://github.com/VisActor/VTable.git",
"directory": "packages/vtable-editors"
},
"author": {
"name": "VisActor",
"url": "https://www.visactor.io/"
}
}