-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.13 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
{
"name": "wagtail-js",
"version": "1.1.2",
"description": "Wagtail JavaScript SDK",
"author": "Peng Boris <[email protected]>",
"license": "MIT",
"funding": "https://github.com/traleor/wagtail-js",
"homepage": "https://github.com/traleor/wagtail-js#readme",
"repository": {
"type": "git",
"url": "https://github.com/traleor/wagtail-js"
},
"bugs": {
"url": "https://github.com/traleor/wagtail-js/issues"
},
"keywords": [
"cms",
"wagtail",
"typescript",
"javascript",
"nodejs",
"django",
"headless",
"nextjs",
"nuxtjs"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/node": "^20.8.7",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsup": "^7.1.0",
"typescript": "^5.1.6"
}
}