-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 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
{
"name": "ep_weave",
"description": "Link all pads using Hash inspired by Squeak Swiki and Scrapbox",
"version": "0.1.1",
"author": {
"name": "NII-cloud-operation",
"url": "https://github.com/NII-cloud-operation/"
},
"contributors": [],
"dependencies": {
"minisearch": "^6.0.1",
"node-html-parser": "^6.1.5",
"remove-markdown": "^0.5.0",
"uuid": "^9.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jquery": "^3.5.30",
"@types/node": "^20.11.30",
"eslint": "^8.57.0",
"eslint-config-etherpad": "^4.0.4",
"typescript": "^5.4.2"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"build": "tsc -p tsconfig.index.json && tsc -p tsconfig.editor.json && mv lib/pad/static/js/* lib/static/js/ && rm -fr lib/pad/static && mv lib/pad/* lib/ && rm -fr lib/pad && cp -fr src/pad/templates lib/ && cp -fr src/pad/static/css lib/static/ && cp -fr lib/static ."
},
"repository": {
"type": "git",
"url": "https://github.com/NII-cloud-operation/ep_weave.git"
}
}