-
Notifications
You must be signed in to change notification settings - Fork 123
/
Copy pathpackage.json
74 lines (74 loc) · 2.15 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
{
"name": "@bpmn-io/form-js-playground",
"version": "1.15.1",
"description": "A form-js playground",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.cjs"
},
"./dist/assets/form-js-playground.css": "./dist/assets/form-js-playground.css",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.cjs",
"module": "dist/index.es.js",
"umd:main": "dist/form-playground.umd.js",
"types": "dist/types/index.d.ts",
"scripts": {
"all": "run-s lint test build",
"build": "run-p bundle generate-types",
"bundle": "rollup -c --failAfterWarnings --bundleConfigAsCjs",
"bundle:watch": "rollup -c -w --bundleConfigAsCjs",
"start": "SINGLE_START=basic npm run dev",
"dev": "npm test -- --auto-watch --no-single-run",
"lint": "run-s lint:*",
"lint:eslint": "eslint .",
"generate-types": "tsc --allowJs --skipLibCheck --declaration --emitDeclarationOnly --outDir dist/types src/index.js",
"test": "karma start",
"prepublishOnly": "npm run build"
},
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "git+https://github.com/bpmn-io/form-js.git",
"directory": "packages/form-js-playground"
},
"author": {
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
},
"dependencies": {
"@bpmn-io/form-js-editor": "^1.15.1",
"@bpmn-io/form-js-viewer": "^1.15.0",
"@codemirror/autocomplete": "^6.18.6",
"@codemirror/commands": "^6.8.0",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/language": "^6.11.0",
"@codemirror/lint": "^6.8.4",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.36.4",
"classnames": "^2.5.1",
"codemirror": "^6.0.1",
"downloadjs": "^1.4.7",
"file-drops": "^0.5.0",
"mitt": "^3.0.1",
"preact": "^10.5.14"
},
"sideEffects": [
"*.css"
],
"devDependencies": {
"css-loader": "^7.1.2",
"min-dash": "^4.2.3",
"min-dom": "^4.1.0",
"rollup-plugin-css-only": "^4.5.2",
"style-loader": "^4.0.0"
}
}