-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 771 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 771 Bytes
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
{
"name": "@appneural/cli-plugin-testing",
"version": "0.0.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsc -w -p tsconfig.json",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"@appneural/cli": "*"
},
"dependencies": {
"commander": "^12.0.0",
"chalk": "^5.0.0"
},
"publishConfig": {
"access": "public"
},
"description": "plugin-testing plugin for APPNEURAL CLI",
"keywords": [
"appneural",
"plugin",
"cli-plugin-testing"
],
"author": "APPNEURAL",
"license": "MIT",
"files": [
"dist",
"README.md"
],
"devDependencies": {
"@types/node": "^24.10.1",
"typescript": "^5.6.3"
}
}