-
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.6 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.6 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": "code-snapshot",
"type": "module",
"version": "0.0.1",
"packageManager": "pnpm@10.6.2",
"description": "_description_",
"author": "reeswell",
"license": "MIT",
"homepage": "https://github.com/reeswell/code-snapshot#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/reeswell/code-snapshot.git"
},
"bugs": "https://github.com/reeswell/code-snapshot/issues",
"keywords": [],
"sideEffects": false,
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"bin": {
"code-snapshot": "./dist/index.mjs",
"cs": "./dist/index.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint",
"prepublishOnly": "pnpm build && pnpm test",
"release": "pnpm publish",
"start": "tsx src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@antfu/eslint-config": "^4.16.2",
"@types/node": "^24.0.13",
"acorn": "^8.15.0",
"eslint": "^9.31.0",
"lint-staged": "^16.1.2",
"simple-git-hooks": "^2.13.0",
"tinyexec": "^1.0.1",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"unbuild": "^3.5.0",
"vite": "^7.0.4",
"vitest": "^3.2.4",
"vitest-package-exports": "^0.1.1",
"yaml": "^2.8.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm i --frozen-lockfile --ignore-scripts --offline && npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}