-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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
{
"name": "djangoapiforms",
"version": "0.1.0",
"description": "A composable to handle Django forms in json",
"scripts": {
"build": "rm -f dist/* && rollup -c",
"test": "jest --coverage",
"docs": "typedoc --entryPointStrategy expand"
},
"dependencies": {
"restmix": "^0.2.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.3",
"@types/jest": "^29.5.4",
"@types/node": "^20.5.9",
"jest": "^29.6.4",
"markdown-it-replace-link": "^1.2.0",
"rollup": "^3.28.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typedoc": "^0.25.1",
"typedoc-plugin-markdown": "^3.16.0",
"typedoc-plugin-rename-defaults": "^0.6.4",
"typescript": "^5.2.2"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/forms.min.js",
"module": "./dist/forms.es.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": "./dist/forms.es.js"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"license": "MIT"
}