-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.87 KB
/
package.json
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "nice-web-routes",
"type": "module",
"version": "2.0.0",
"description": "Easy way to create nice web routes for you application",
"author": "Artem Ignatev <art.ser.ignatiev@gmail.com>",
"repository": "git@github.com:tomas-light/nice-web-routes.git",
"homepage": "https://github.com/tomas-light/nice-web-routes#readme",
"bugs": {
"url": "https://github.com/tomas-light/nice-web-routes/issues"
},
"license": "MIT",
"scripts": {
"compile": "tsc --build tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json",
"prepare-package-json": "cross-env NODE_OPTIONS=\"--loader ts-node/esm --disable-warning ExperimentalWarning\" ts-node scripts/prepare-package-json.ts",
"build:clean": "rimraf -rf ./dist",
"build": "npm-run-all build:clean compile prepare-package-json",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "vitest run"
},
"devDependencies": {
"@types/eslint": "^8.56.10",
"@types/node": "20.14.10",
"@typescript-eslint/eslint-plugin": "7.13.1",
"@typescript-eslint/parser": "7.13.1",
"cross-env": "7.0.3",
"eslint": "9.5.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-sonarjs": "0.23.0",
"npm-run-all": "4.1.5",
"prettier": "3.3.2",
"rimraf": "5.0.8",
"ts-node": "10.9.2",
"typescript": "5.5.3",
"vitest": "2.0.1"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"build-instructions": {
"name": "nice-web-routes",
"files": [
"cjs/**/*",
"esm/**/*",
"types/**/*",
"package.json",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"main": "./cjs/index.js",
"module": "./esm/index.js",
"types": "./types/index.d.ts"
},
"packageManager": "yarn@4.3.1"
}