-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 801 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 801 Bytes
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
{
"name": "poly-widgets",
"version": "1.0.0",
"description": "",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./layout": {
"import": "./dist/layout.js",
"types": "./dist/layout.d.ts"
}
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"nanoc": "nanoc --language=ts $(find src -name \"*.yml\")",
"prepare": "tsc -p tsconfig.build.json"
},
"keywords": [],
"author": "",
"dependencies": {
"nanopack": "github:poly-gui/ts-nanopack#main"
},
"devDependencies": {
"@biomejs/biome": "^1.7.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"prettier": "^3.2.5",
"typescript": "^5.4.2"
},
"peerDependencies": {
"poly": "github:poly-gui/ts-poly#main"
}
}