-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "@pjqdyd/npm-ts-demo",
"version": "1.0.4",
"description": "The demo project of npm typescript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist"],
"scripts": {
"server": "npm run dev",
"dev": "tsc",
"build": "tsc",
"test": "jest",
"lint": "eslint \"src/**/*.{vue,ts,tsx}\" --fix",
"release": "tsc && npm publish"
},
"keywords": [
"npm",
"typescript"
],
"author": "pjqdyd",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pjqdyd/npm-ts-demo.git"
},
"bugs": {
"url": "https://github.com/pjqdyd/npm-ts-demo/issues"
},
"homepage": "https://github.com/pjqdyd/npm-ts-demo#readme",
"devDependencies": {
"@types/jest": "^28.1.1",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^28.1.1",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5",
"typescript": "^4.7.3"
}
}