-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.7 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.7 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
{
"name": "@w5s/error",
"version": "1.0.0-alpha.0",
"description": "Error module",
"keywords": [
"error",
"errors"
],
"homepage": "https://github.com/w5s/std/tree/master/packages/error#readme",
"bugs": {
"url": "https://github.com/w5s/std/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:w5s/std.git",
"directory": "packages/error"
},
"license": "MIT",
"author": "Julien Polo <julien.polo@gmail.com>",
"type": "module",
"exports": {
".": "./dist/index.js",
"./dist/*": "./dist/*"
},
"typings": "./dist/index.d.ts",
"files": [
"dist/",
"src/",
"!*.d.ts.map",
"!**/*.spec.*",
"!**/__tests__/**"
],
"scripts": {
"build": "pnpm run \"/^build:.*/\"",
"build:tsc": "tsc -b tsconfig.build.json",
"clean": "pnpm run \"/^clean:.*/\"",
"clean:tsc": "rm -rf dist",
"docs": "node '../../markdown.mjs'",
"format": "pnpm run \"/^format:.*/\"",
"format:src": "eslint . --fix",
"lint": "pnpm run \"/^lint:.*/\"",
"lint:src": "eslint .",
"size-limit": "size-limit",
"spellcheck": "cspell --no-progress '**'",
"test": "pnpm run \"/^test:.*/\"",
"test:src": "vitest run",
"tsc": "tsc",
"validate": "npm run lint && npm run build && npm run test"
},
"dependencies": {
"@w5s/core-type": "workspace:^1.0.0-alpha.0"
},
"devDependencies": {
"typescript": "6.0.2",
"vitest": "latest"
},
"peerDependencies": {
"typescript": "^3.8.0 || ^4.0.0 || ^5.0.0 || ^6.0.0"
},
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "5 kB"
}
],
"sideEffect": false
}