-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.47 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.47 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "aptx-validator",
"version": "3.2.0",
"description": "轻量易用的 Node.js + Typescript 参数校验库",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "ts-node src/index.ts",
"test": "ts-node test/index.ts",
"lint": "eslint src/*.ts",
"build": "rm -rf dist && tsc -p tsconfig.json"
},
"files": [
"dist",
"package.json",
"package-lock.json",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Dipper30/aptx-validator.git"
},
"keywords": [
"Node.js",
"Validator",
"Typescript",
"Javascript",
"参数",
"校验"
],
"author": "Zijun Zong",
"license": "MIT",
"bugs": {
"url": "https://github.com/Dipper30/aptx-validator/issues"
},
"homepage": "https://github.com/Dipper30/aptx-validator#readme",
"dependencies": {
"aptx-validator": "^3.1.1-beta.1",
"assert": "^2.0.0",
"dotenv": "^16.4.7",
"eslint-plugin-prettier": "^5.2.1"
},
"env": {
"es6": true,
"node": true
},
"_moduleAliases": {
"@": "./src"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.10.0",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"eslint": "^9.10.0",
"globals": "^15.9.0",
"module-alias": "^2.2.2",
"node-ts": "^6.1.2",
"ts-node": "^10.9.2",
"tslib": "^2.7.0",
"typescript": "^5.6.2"
}
}