-
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) · 797 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 797 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": "jn-server",
"version": "1.0.8",
"author": "Takayuki Kamiyama",
"homepage": "http://pieceof.shop/",
"description": "BackUp, JSON RESTful Server for backend.",
"license": "MIT",
"type": "module",
"main": "./bin/server.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"jns": "./bin/jns.ts",
"jn-server": "./bin/server.ts",
"uuid": "./bin/uuid",
"uuid.exe": "./bin/uuid.exe"
},
"keywords": [
"RESTful",
"server",
"backend"
],
"dependencies": {
"npm-check-updates": "^19.6.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
"url": "https://github.com/takkii/json-server.git"
},
"devDependencies": {
"@types/node": "^25.5.0"
}
}