-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.01 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.01 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
{
"name": "unify-js",
"version": "0.1.0",
"description": "",
"type": "module",
"main": "dist/index.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"dev": "tsc --project tsconfig.development.json --watch",
"build": "tsc --project tsconfig.production.json",
"build:doc": "typedoc",
"test": "node --enable-source-maps --test dist/",
"test:watch": "node --enable-source-maps --test --watch dist/",
"lint": "eslint",
"cz": "cz"
},
"keywords": [],
"author": "",
"devDependencies": {
"@tsconfig/recommended": "^1.0.2",
"@types/node": "^20.5.6",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.2",
"typedoc": "^0.25.0",
"typescript": "^5.2.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}