-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 853 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 853 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
{
"name": "@packages/resolve-dist",
"version": "0.0.0-development",
"private": true,
"main": "cjs/index.js",
"scripts": {
"build": "yarn build:cjs && yarn build:esm",
"build-prod": "yarn build",
"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 cjs esm",
"clean-deps": "rimraf node_modules",
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
"tslint": "tslint --config ../ts/tslint.json --project ."
},
"dependencies": {
"fs-extra": "9.1.0",
"rimraf": "^6.1.1",
"typescript": "~5.4.5"
},
"files": [
"cjs/*",
"esm/*"
],
"types": "./cjs/index.d.ts",
"license": "MIT",
"module": "esm/index.js",
"nx": {}
}