-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.08 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.08 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@makenew/tsmodule",
"version": "4.1.0",
"description": "Package skeleton for a TypeScript module.",
"type": "module",
"main": "index.js",
"types": "./index.d.ts",
"exports": {
".": {
"import": "./index.js",
"types": "./index.d.ts"
}
},
"module": "index.js",
"sideEffects": false,
"keywords": [
"node"
],
"homepage": "https://github.com/makenew/tsmodule",
"bugs": "https://github.com/makenew/tsmodule/issues",
"repository": "makenew/tsmodule",
"license": "MIT",
"author": {
"name": "Evan Sosenko",
"email": "razorx@evansosenko.com"
},
"files": [
"index.js",
"index.js.map",
"index.d.ts",
"lib",
"src",
"!test",
"!**/*.spec.ts",
"!**/*.test.ts"
],
"scripts": {
"build": "npm run build:ts",
"postbuild": "node ./index.js",
"build:ts": "tsc --project tsconfig.build.json",
"prebuild:ts": "del 'index.*' lib",
"postbuild:ts": "tsc-alias --project tsconfig.build.json",
"typecheck": "tsc",
"test": "c8 ava",
"pretest": "tsx src/index.ts",
"test:update": "ava --update-snapshots",
"test:watch": "ava --watch",
"test:debug": "ava debug --break",
"lint": "eslint .",
"postlint": "prettier --check --ignore-path .gitignore .",
"postversion": "git push --follow-tags",
"example": "tsx examples",
"example:inspect": "tsx --inspect examples",
"format": "prettier --write --ignore-path .gitignore .",
"preformat": "eslint --fix .",
"report": "c8 report"
},
"engines": {
"node": ">=20.9.0",
"npm": ">=10.1.0"
},
"devDependencies": {
"@types/node": "^22.16.4",
"ava": "^6.0.1",
"c8": "^10.1.2",
"del-cli": "^6.0.0",
"eslint": "^9.31.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"jiti": "^2.4.2",
"landlubber": "^2.0.0",
"neostandard": "^0.12.2",
"prettier": "^3.0.0",
"tsc-alias": "^1.8.2",
"tsx": "^4.6.2",
"typescript": "^5.8.3"
}
}