This repository was archived by the owner on Aug 31, 2023. It is now read-only.
generated from esdmr/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
135 lines (135 loc) · 3.19 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "@esdmr/assert",
"version": "1.1.0",
"description": "Assertion library for JavaScript",
"homepage": "https://github.com/esdmr/assert#readme",
"bugs": "https://github.com/esdmr/assert/issues",
"repository": "https://github.com/esdmr/assert",
"license": "MIT",
"author": "Saeed M Rad <esdmr0@gmail.com> (https://github.com/esdmr)",
"type": "module",
"exports": {
".": {
"import": "./build/main.js",
"types": "./build/main.d.ts",
"docs": null
},
"./assert": {
"import": "./build/assert.js",
"types": "./build/assert.d.ts"
},
"./errors": {
"import": "./build/errors.js",
"types": "./build/errors.d.ts"
},
"./nullables": {
"import": "./build/nullables.js",
"types": "./build/nullables.d.ts"
},
"./numbers": {
"import": "./build/numbers.js",
"types": "./build/numbers.d.ts"
},
"./types": {
"import": "./build/types.js",
"types": "./build/types.d.ts"
}
},
"main": "build/main.js",
"types": "build/main.d.ts",
"files": [
"build/**/*.js",
"build/**/*.d.ts",
"!build/api/**/*",
"!build/docs/**/*",
"!build/examples/**/*",
"!build/test/**/*"
],
"scripts": {
"build": "tsc -b",
"build:examples": "pnpm link . && tsc -b examples",
"build:update-paths": "node scripts/update-ts-paths.js",
"changeset": "changeset",
"changeset:version": "changeset version",
"clean": "rimraf build .nyc_output coverage",
"preinstall": "npx -y only-allow pnpm",
"lint": "xo",
"lint:fix": "xo --fix",
"prepack": "node scripts/prepack.js",
"postpack": "node scripts/postpack.js",
"test": "tap",
"test:coverage": "c8 tap",
"test:coverage-html": "c8 report -r html",
"test:coverage-lcov": "c8 report -r lcov",
"watch": "tsc -b -w"
},
"devDependencies": {
"@babel/eslint-parser": "7.19.1",
"@changesets/cli": "2.25.0",
"@microsoft/api-documenter": "7.13.40",
"@microsoft/api-extractor": "7.18.6",
"@types/node": "16.18.0",
"@types/tap": "15.0.7",
"c8": "7.12.0",
"execa": "6.1.0",
"rimraf": "3.0.2",
"tap": "16.3.0",
"typescript": "4.8.4",
"xo": "0.52.4"
},
"engines": {
"node": ">=16"
},
"imports": {
"#src/*": "./build/*",
"#test/*": "./build/test/*"
},
"packageManager": "pnpm@7.14.0",
"pnpm": {
"overrides": {
"@types/node": "^16.0.0",
"es-abstract": "^1.18.5"
},
"packageExtensions": {
"eslint-import-resolver-webpack": {
"peerDependenciesMeta": {
"webpack": {
"optional": true
}
}
},
"@babel/eslint-parser": {
"peerDependenciesMeta": {
"@babel/core": {
"optional": true
},
"eslint": {
"optional": true
}
}
}
}
},
"typesVersions": {
"*": {
".": [
"build/main.d.ts"
],
"assert": [
"build/assert.d.ts"
],
"errors": [
"build/errors.d.ts"
],
"nullables": [
"build/nullables.d.ts"
],
"numbers": [
"build/numbers.d.ts"
],
"types": [
"build/types.d.ts"
]
}
}
}