-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
75 lines (75 loc) · 2.34 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
{
"name": "@0b5vr/automaton-with-gui",
"version": "4.3.0-alpha.0",
"description": "Animation engine for creative coding, with GUI!",
"repository": "https://github.com/0b5vr/automaton",
"author": "0b5vr",
"main": "dist/automaton-with-gui.min.js",
"module": "dist/automaton-with-gui.module.min.js",
"exports": {
"import": {
"development": "./dist/automaton-with-gui.module.js",
"production": "./dist/automaton-with-gui.module.min.js",
"default": "./dist/automaton-with-gui.module.min.js"
},
"require": {
"development": "./dist/automaton-with-gui.js",
"production": "./dist/automaton-with-gui.min.js",
"default": "./dist/automaton-with-gui.min.js"
},
"default": "./dist/automaton-with-gui.min.js"
},
"types": "types/index.d.ts",
"typesVersions": {
"<3.9": {
"*": [
"ts3.4/*"
]
}
},
"sideEffects": false,
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development rollup -w -c",
"all": "yarn && yarn lint && yarn test && yarn clean && yarn build && yarn docs",
"version": "yarn all",
"clean": "rimraf dist/ docs/ ts*/ types/",
"test": "jest",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"build": "yarn build-dev && yarn build-prod && yarn build-types",
"build-dev": "cross-env NODE_ENV=development rollup -c",
"build-prod": "cross-env NODE_ENV=production rollup -c",
"build-types": "tsc --declaration --declarationDir ./types --emitDeclarationOnly && downlevel-dts types ts3.4/types",
"docs": "typedoc --out docs --mode file --excludeNotExported"
},
"files": [
"/dist/",
"/ts*/",
"/types/",
"/LICENSE",
"/package.json",
"/README.md"
],
"dependencies": {
"@0b5vr/automaton": "4.2.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@svgr/rollup": "^5.4.0",
"@types/react": "^16.9.48",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@types/styled-components": "5.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"immer": "^7.0.8",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-error-boundary": "^3.1.1",
"react-redux": "^7.2.1",
"redux": "^4.0.5",
"resize-observer-polyfill": "^1.5.1",
"styled-components": "^5.1.1"
}
}