-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
53 lines (53 loc) · 1.61 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
{
"name": "@0b5vr/automaton-fxs-v2compat",
"version": "4.2.1",
"description": "Bunch of automaton fxs",
"repository": "https://github.com/0b5vr/automaton",
"author": "0b5vr",
"main": "./dist/automaton-fxs-v2compat.min.js",
"module": "./dist/automaton-fxs-v2compat.module.min.js",
"exports": {
"import": {
"development": "./dist/automaton-fxs-v2compat.module.js",
"production": "./dist/automaton-fxs-v2compat.module.min.js",
"default": "./dist/automaton-fxs-v2compat.module.min.js"
},
"require": {
"development": "./dist/automaton-fxs-v2compat.js",
"production": "./dist/automaton-fxs-v2compat.min.js",
"default": "./dist/automaton-fxs-v2compat.min.js"
},
"default": "./dist/automaton-fxs-v2compat.min.js"
},
"types": "types/index.d.ts",
"typesVersions": {
"<3.9": {
"*": [
"ts3.4/*"
]
}
},
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development rollup -w -c",
"all": "yarn && yarn lint && yarn clean && yarn build",
"version": "yarn all",
"clean": "rimraf dist/ ts*/ types/",
"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"
},
"files": [
"/dist/",
"/ts*/",
"/types/",
"/LICENSE",
"/package.json",
"/README.md"
],
"dependencies": {
"@0b5vr/automaton": "4.2.1"
}
}