-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 946 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 946 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
39
40
41
42
43
{
"name": "@heymp/scratchpad",
"description": "Run TS/JS snippets in a locally",
"version": "1.0.0-next.21",
"main": "src/lib/index.js",
"module": "src/lib/index.js",
"type": "module",
"bin": {
"scratchpad": "bin/cli.js"
},
"exports": {
".": {
"types": "./src/lib/index.d.ts.js",
"default": "./src/lib/index.js"
}
},
"files": [
"bin/cli.js",
"templates/**",
"src/**",
"types.d.ts"
],
"dependencies": {
"@commander-js/extra-typings": "^12.1.0",
"commander": "^12.0.0",
"esbuild": "^0.25.10",
"playwright": "^1.44.1"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"test": "npm run build && node --test src/**/*.test.js",
"release": "npx @changesets/cli publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/node": "^22.1.0",
"typescript": "^5.5.4"
},
"publishConfig": {
"access": "public"
}
}