-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 649 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 649 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
{
"name": "@gdquest/evoliz",
"version": "0.1.0",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"scripts": {
"build": "npm run clean && npm run tsc",
"tsc": "tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json",
"watch": "tsc -w -p tsconfig.try.json",
"try": "tsx src/_for_trying/try.mts",
"clean": "rimraf lib",
"prepublishOnly": "npm run build"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"useTabs": true,
"semi": false,
"singleQuote": true
},
"devDependencies": {
"@types/node": "^20.4.9",
"dotenv": "^16.3.1",
"rimraf": "^5.0.1",
"tsx": "^3.12.7",
"typescript": "^5.1.6"
}
}