-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.07 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.07 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
72
73
74
75
{
"name": "@gian-coder/editor-components",
"version": "0.0.6",
"description": "Some components for building an editor",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"unpkg": "dist/umd/editor-components.js",
"files": [
"dist",
"screens"
],
"scripts": {
"build:esm": "tsc --module esnext --target es2015 --outDir dist/esm",
"build:cjs": "tsc --module commonjs --target es5 --outDir dist/cjs",
"build:umd": "rollup -c",
"build:ts": "run-p build:esm build:cjs build:umd",
"build:scss": "node scripts/scss.js",
"build": "run-s build:ts build:scss",
"test": "jest",
"test:watch": "jest --watch",
"lint:fix": "eslint . --fix"
},
"license": "MIT",
"author": {
"name": "iamgian_coder",
"url": "https://github.com/iamgian_coder",
"email": "iamgiancoder@gmail.com"
},
"homepage": "https://github.com/iamgian-coder/editor-components",
"bugs": {
"url": "https://github.com/iamgian-coder/editor-components/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/iamgian-coder/editor-components"
},
"keywords": [
"x6",
"react",
"topology",
"editor"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.3.3",
"@types/react": "^18.0.15",
"autoprefixer": "^10.4.7",
"clamp": "^1.0.1",
"classnames": "^2.3.1",
"cssnano": "^5.1.12",
"fs-extra": "^10.1.0",
"node-sass": "^7.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"rc-dropdown": "^4.0.1",
"rc-trigger": "^5.3.1",
"rc-util": "^5.22.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-resize-detector": "^7.1.2",
"rollup": "^2.77.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"ua-parser-js": "^1.0.2"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}