-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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
{
"name": "any-ts",
"private": false,
"version": "0.48.1",
"type": "module",
"author": {
"name": "Andrew Jarrett",
"email": "[email protected]",
"url": "https://github.com/ahrjarrett"
},
"description": "a small set of TypeScript namespaces that overload built-in names (like any) to make them extensible",
"repository": {
"type": "git",
"url": "https://github.com/ahrjarrett/any-ts.git"
},
"packageManager": "[email protected]",
"license": "MIT",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"files": [
"dist/index.d.ts"
],
"sideEffects": false,
"scripts": {
"build": "pnpm clean:build && tsup src/index.ts \"!src/**/*.spec.ts\" --format cjs,esm --dts",
"check": "tsc --noEmit",
"clean": "pnpm run \"/^check:.*/\"",
"clean:build": "rm -rf dist",
"clean:deps": "rm -rf dist",
"lint": "pnpm check",
"changes": "./bin/changeset.sh",
"ci:version": "pnpm dlx tsx ./bin/version.ts",
"ci:publish": "changeset publish",
"test": "vitest"
},
"devDependencies": {
"@arktype/attest": "^0.7.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@types/node": "^20.12.7",
"init": "^0.1.2",
"tsup": "^8.0.2",
"typescript": "5.3.3",
"vitest": "^1.6.0"
}
}