-
Notifications
You must be signed in to change notification settings - Fork 107
/
package.json
69 lines (69 loc) · 2.2 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
{
"name": "@bpmn-io/form-js-viewer",
"version": "1.12.0",
"description": "View forms - powered by bpmn.io",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.cjs"
},
"./dist/assets/form-js.css": "./dist/assets/form-js.css",
"./dist/assets/form-js-base.css": "./dist/assets/form-js-base.css",
"./dist/assets/flatpickr/light.css": "./dist/assets/flatpickr/light.css",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.cjs",
"module": "dist/index.es.js",
"types": "dist/types/index.d.ts",
"scripts": {
"all": "run-s test build",
"build": "run-p bundle bundle:scss generate-types",
"start": "SINGLE_START=basic npm run dev",
"start:groups": "SINGLE_START=groups npm run dev",
"bundle": "rollup -c --failAfterWarnings --bundleConfigAsCjs",
"bundle:scss": "sass --no-source-map --load-path=\"../../node_modules\" assets/index.scss dist/assets/form-js.css",
"bundle:watch": "run-p bundle:watch-js bundle:watch-scss",
"bundle:watch-js": "rollup -c -w --bundleConfigAsCjs",
"bundle:watch-scss": "npm run bundle:scss -- --watch",
"dev": "npm test -- --auto-watch --no-single-run",
"generate-types": "tsc --allowJs --skipLibCheck --declaration --emitDeclarationOnly --outDir dist/types src/index.js && copyfiles --flat src/*.d.ts dist/types",
"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-viewer"
},
"author": {
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
},
"dependencies": {
"@carbon/grid": "^11.29.0",
"big.js": "^6.2.2",
"classnames": "^2.5.1",
"didi": "^10.2.2",
"dompurify": "^3.2.0",
"feelers": "^1.4.0",
"feelin": "^3.2.0",
"flatpickr": "^4.6.13",
"ids": "^1.0.5",
"lodash": "^4.17.21",
"luxon": "^3.5.0",
"marked": "^15.0.1",
"min-dash": "^4.2.2",
"preact": "^10.5.14"
},
"sideEffects": [
"*.css"
],
"files": [
"dist"
]
}