-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.93 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.93 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
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@intentjs/cli",
"version": "0.0.19",
"description": "Helper commands for building Intent application.",
"repository": {
"type": "git",
"url": "git+https://github.com/intentjs/cli.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/intentjs/cli/issues"
},
"homepage": "https://github.com/intentjs/cli#readme",
"author": "Vinayak Sarawagi <vinayaksarawagi25@gmail.com>",
"engines": {
"node": ">= 16.14"
},
"type": "module",
"main": "commands/index.js",
"types": "commands/index.d.ts",
"bin": {
"intent": "bin/intent.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next"
},
"exports": {
".": {
"types": "./commands/index.d.ts",
"default": "./commands/index.js"
},
"./config": {
"types": "./lib/configuration/index.d.ts",
"default": "./lib/configuration/index.js"
},
"./build": {
"types": "./commands/build.d.ts",
"default": "./commands/build.js"
},
"./commands": {
"types": "./commands/index.d.ts",
"default": "./commands/index.js"
}
},
"dependencies": {
"@clack/prompts": "^0.10.0",
"@swc/cli": "^0.6.0",
"@swc/core": "^1.11.11",
"chokidar": "^4.0.3",
"commander": "^13.1.0",
"fast-glob": "^3.3.3",
"fs-extra": "^11.3.0",
"picocolors": "^1.1.0",
"picomatch": "^4.0.2",
"prettier": "^3.5.3",
"radash": "^12.1.0",
"simple-git": "^3.27.0",
"tree-kill": "^1.2.2",
"ts-morph": "^25.0.1",
"typescript": "^5.6.2"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.13",
"@types/node": "^22.13.11",
"@types/picomatch": "^3.0.2",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2"
}
}