-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.27 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.27 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
{
"name": "@modular-rocks/workspace-node",
"version": "0.1.12",
"description": "This is the Workspace for Typescript/Javascript, extending @modular-rocks/workspace specifically for NodeJS.",
"main": "./dist/index.js",
"exports": {
".": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./types": {
"types": "./dist/types.d.ts",
"default": "./dist/types.js"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"engines": {
"node": ">=20.0.0"
},
"files": ["dist", "src/**/*.ts", "!dist/**/*.test.*", "!src/**/*.test.ts"],
"scripts": {
"build": "tsc -p tsconfig.json",
"build:w": "tsc -p tsconfig.json -w",
"test": "vitest run",
"test:w": "vitest",
"coverage": "vitest --coverage run",
"lint": "biome lint . --config-path=\"../../biome.json\""
},
"dependencies": {
"@babel/parser": "7.24.7",
"@babel/traverse": "7.24.7",
"@babel/types": "7.24.7",
"@modular-rocks/traverse-files": "workspace:*",
"@modular-rocks/workspace": "workspace:*",
"recast": "0.23.9"
},
"devDependencies": {
"@types/babel__traverse": "7.20.6",
"tsconfig": "workspace:*"
},
"author": "Alex Dollery (DolNpm/DolGit)",
"homepage": "",
"license": "Apache-2.0"
}