-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.44 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.44 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": "@packages/scaffold-config",
"version": "0.0.0-development",
"description": "Logic related to scaffolding new projects using launchpad",
"main": "cjs/index.js",
"scripts": {
"build": "yarn build:cjs && yarn build:esm && yarn build:browser",
"build-prod": "yarn build",
"build:browser": "rimraf browser && tsc -p tsconfig.browser.json",
"build:cjs": "rimraf cjs && tsc -p tsconfig.cjs.json",
"build:esm": "rimraf esm && tsc -p tsconfig.esm.json",
"check-ts": "tsc -p tsconfig.cjs.json --noEmit && yarn -s tslint -p tsconfig.cjs.json",
"clean": "rimraf esm cjs browser",
"clean-deps": "rimraf node_modules",
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
"test": "vitest run",
"test-debug": "vitest --inspect-brk --no-file-parallelism --test-timeout=0",
"tslint": "tslint --config ../ts/tslint.json --project .",
"watch": "yarn build:cjs --watch & yarn build:esm --watch"
},
"dependencies": {
"debug": "^4.3.4",
"dedent": "^0.7.0",
"find-up": "^5.0.0",
"fs-extra": "^9.1.0",
"globby": "^11.0.1",
"resolve-package-path": "^4.0.3",
"semver": "^7.7.3",
"zod": "^3.22.5"
},
"devDependencies": {
"@packages/ts": "0.0.0-development",
"@packages/types": "0.0.0-development",
"rimraf": "^6.1.1",
"vitest": "^3.2.4"
},
"files": [
"cjs/*",
"esm/*"
],
"types": "cjs/index.d.ts",
"license": "MIT",
"module": "esm/index.js",
"nx": {}
}