-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.29 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.29 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
{
"name": "csnp",
"type": "module",
"version": "1.5.2",
"packageManager": "pnpm@9.5.0",
"author": "Russell Xio <junxio220@gmail.com>",
"description": "A cli-tool for generating VSCode code snippets.",
"homepage": "https://github.com/jxzho/csnp#csnp",
"scripts": {
"prepublishOnly": "npm run build",
"start": "tsx src/scripts/start.ts",
"dev": "tsx watch src/scripts/start.ts",
"test": "vitest run",
"check": "tsc --noEmit && vitest run",
"build": "pnpm check && tsup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jxzho/csnp.git"
},
"devDependencies": {
"@clack/prompts": "^0.11.0",
"@jest/globals": "^29.6.4",
"@types/node": "^20.5.9",
"@types/react": "^18.3.3",
"cac": "^6.7.14",
"comment-json": "^4.2.3",
"gray-matter": "^4.0.3",
"ink": "^5.0.1",
"ink-syntax-highlight": "^2.0.2",
"picocolors": "^1.1.1",
"react": "^18.3.1",
"tslib": "^2.6.3",
"tsup": "^8.5.1",
"tsx": "^4.16.2",
"typescript": "^5.5.3",
"vitest": "^4.0.16",
"yoga-wasm-web": "^0.3.3"
},
"bin": {
"csnp": "bin/entry.js"
},
"files": [
"dist",
"bin"
],
"license": "MIT",
"engines": {
"node": ">=18.20.3"
},
"keywords": [
"csnp",
"Code Snippets",
"VSCode Snippets"
]
}