-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 864 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 864 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
{
"name": "render.js",
"version": "0.0.0",
"description": "A library of rendering HTML elements for TypeScript and JavaScript.",
"author": "よね/Yone",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yone1130/render.js.git"
},
"bugs": {
"url": "https://github.com/yone1130/render.js/issues"
},
"homepage": "https://render-js.yoneyo.com",
"main": "./src/render.js",
"scripts": {
"build": "tsc",
"start-docs": "http-server ./docs -p 3000",
"start-test": "http-server ./ -p 3001"
},
"dependencies": {
"typescript": "^5.8.2",
"version": "github:yone1130/version"
},
"devDependencies": {
"http-server": "^14.1.1"
},
"type": "module",
"exports": {
"import": "./src/render.js"
}
}