-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.15 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": "mkpages.js",
"version": "2.0.1",
"description": "Misskey Pages Builder for JavaScript/TypeScript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"files": [
"lib"
],
"scripts": {
"clean": "node -e \"fs.rmSync('lib', {recursive: true, force: true})\"",
"build": "npm run clean && tsc",
"prepack": "run-s test build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/kabo2468/mkpages.js.git"
},
"keywords": [
"Misskey"
],
"author": "kabo2468",
"bugs": {
"url": "https://github.com/kabo2468/mkpages.js/issues"
},
"homepage": "https://github.com/kabo2468/mkpages.js",
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/node": "^18.18.6",
"@types/uuid": "^9.0.6",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "9.0.0",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"uuid": "^9.0.1"
}
}