-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.72 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
{
"name": "@egret-revit/core",
"version": "0.2.6",
"scripts": {
"dev": "vite --port 3000",
"build": "vite build && npm run build:esm",
"build:esm": "cross-env NODE_ENV='production' rollup --config rollup.config.js",
"serve": "vite preview",
"watch": "yarn build:esm --watch",
"test": "npm run build:esm",
"lint": "eslint --fix --config .eslintrc.json",
"precommit": "echo 'precommit' && lint-staged"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"eslint --fix"
]
},
"main": "./dist/core.umd.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"files": [
"dist",
"src"
],
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/core.umd.js"
}
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-decorators": "^7.16.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-node-resolve": "^13.1.1",
"@rollup/plugin-typescript": "^8.3.0",
"@types/bluebird": "^3.5.36",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"@zerollup/ts-transform-paths": "^1.7.18",
"cross-env": "^7.0.3",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.4.1",
"rollup": "^2.60.0",
"rollup-plugin-multi-input": "^1.3.1",
"tslib": "^2.3.1",
"ttypescript": "^1.5.13",
"typescript": "^4.4.4",
"vite": "^2.4.3"
},
"dependencies": {
"bluebird": "^3.7.2",
"konva": "^8.3.1",
"rxjs": "~7.3.0"
}
}