generated from tjsr/npm-library-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.58 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
60
61
62
63
64
{
"name": "@tjsr/fs-utils",
"version": "0.0.8",
"description": "Shared filesystem utils library",
"type": "module",
"main": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"module": "dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"test": "vitest --run && npm run lint",
"build": "tsc",
"build:dev": "tsc -w",
"build:dist": "tsc -p tsconfig.publish.json && tsc -p tsconfig.cjs.json",
"clean": "npx rimraf dist build",
"clean:all": "npx rimraf dist build node_modules",
"lint": "eslint --config eslint.config.mjs src/*.ts",
"lint:fix": "eslint --fix src/*.ts",
"prepack": "npm test && npm run build:dist",
"prepublishOnly": "npm run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tjsr/fs-utils.git"
},
"keywords": [
"Express"
],
"author": "Tim Rowe <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/tjsr/fs-utils/issues"
},
"homepage": "https://github.com/tjsr/fs-utils#readme",
"devDependencies": {
"@tjsr/eslint-config": "github:tjsr/eslint-config#main",
"@types/node": "^20.14.10",
"rimraf": "^6.0.0",
"tsx": "^4.16.2",
"typescript": "^5.5.3",
"vitest": "^1.6.0"
},
"nodemon": {
"watch": [
"src",
"package.json",
"tsconfig.json",
"tsconfig.publish.json",
"tsconfig.cjs.json"
],
"ext": "ts",
"ignore": [
"dist",
"build"
],
"exec": "npm run build:dist",
"delay": 200
}
}