-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.71 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
48
49
50
51
52
53
54
{
"name": "gemstone",
"version": "1.0.0-alpha",
"description": "ToolKit for analyzing NPM dependencies",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "eslint . --fix",
"pub:alpha": "changeset pre enter alpha",
"pub:beta": "changeset pre enter beta",
"pub:rc": "changeset pre enter rc",
"bump": "changeset add",
"cversion": "changeset version",
"cpublish": "changeset publish",
"build:rollup": "rollup -c",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"commitlint": "commitlint --edit",
"test": "vitest",
"test:run": "vitest run",
"coverage": "vitest run --coverage",
"prepare": "husky install"
},
"keywords": [
"dependencies",
"depanlz",
"analyze"
],
"author": "Scoheart",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-typescript": "^11.1.3",
"@types/node": "^20.5.7",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"@vitest/coverage-v8": "^0.34.3",
"commitizen": "^4.3.0",
"eslint": "^8.48.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"rollup": "^3.28.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vitepress": "1.0.0-rc.10",
"vitest": "^0.34.3"
}
}