-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.8 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.8 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
{
"name": "@statebacked/react-statechart",
"version": "0.1.4",
"description": "Statechart viewer and editor from StateBacked.dev",
"main": "dist/cjs/index.js",
"types": "./dist/dts/index.d.ts",
"type": "module",
"exports": {
".": {
"types": {
"import": "./dist/dts/index.d.ts",
"require": "./dist/dts/index.d.ts"
},
"default": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"./index.css": {
"default": {
"import": "./dist/mjs/index.css",
"require": "./dist/cjs/index.css"
}
}
},
"scripts": {
"build": "rollup --config ./rollup.config.mjs && tsc --emitDeclarationOnly --declaration --outDir dist/dts && echo '{ \"type\": \"commonjs\" }' > dist/cjs/package.json",
"prettier": "prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/statebacked/react-statechart.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/statebacked/react-statechart/issues"
},
"homepage": "https://github.com/statebacked/react-statechart#readme",
"dependencies": {
"elkjs": "^0.8.2",
"react-icons": "^4.3.1",
"uuid": "^9.0.0",
"web-worker": "^1.2.0",
"zod": "^3.22.2"
},
"files": [
"packackge.json",
"README.md",
"LICENSE",
"dist/**/*"
],
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.3",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/uuid": "^9.0.2",
"autoprefixer": "^10.4.15",
"postcss-svg": "^3.0.0",
"prettier": "^2.8.1",
"rollup": "^3.28.1",
"rollup-plugin-postcss": "^4.0.2",
"typescript": "^4.9.3",
"typescript-plugin-css-modules": "^5.0.1"
}
}