-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.09 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": "nap-portal",
"version": "0.1.0",
"description": "NAP Portal connects to a NAP WebSocket server and generates a control interface for NAP Portal Components in your NAP application",
"keywords": [
"nap",
"framework",
"portal"
],
"homepage": "https://github.com/napframework/nap-portal#readme",
"bugs": {
"url": "https://github.com/napframework/nap-portal/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/napframework/nap-portal.git"
},
"license": "ISC",
"author": "NAP Labs",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"start": "tsc --watch",
"build": "tsc",
"docs": "typedoc",
"test": "echo \"No test specified\"",
"prepare": "npm run build"
},
"devDependencies": {
"@types/lodash": "^4.14.178",
"@types/uuid": "^8.3.3",
"express": "^4.17.1",
"typedoc": "^0.22.11",
"typescript": "^4.4.3"
},
"dependencies": {
"lodash": "^4.17.21",
"uuid": "^8.3.2"
},
"engines": {
"npm": ">=9.0.0",
"node": ">=18.0.0"
}
}