-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.63 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.63 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
{
"name": "picostruct",
"version": "0.1.2",
"description": "teeny tiny typescript object validator",
"keywords": [
"typescript",
"validator",
"json",
"validation",
"schema"
],
"main": "dist/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsup",
"test": "vitest run",
"format": "prettier --write .",
"check-types": "tsc",
"check-format": "prettier --check .",
"check-exports": "attw --pack .",
"check-size": "size-limit",
"ci": "npm run build && npm run test && npm run check-types && npm run check-format && npm run check-exports && npm run check-size",
"publish": "npm run ci && npm publish"
},
"homepage": "https://github.com/Quant1um/picostruct",
"bugs": {
"url": "https://github.com/Quant1um/picostruct/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Quant1um/picostruct.git"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "1 kB"
}
],
"author": "Quant1um (https://amee.ee)",
"license": "MIT",
"files": [
"dist"
],
"type": "module",
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.0",
"@size-limit/preset-small-lib": "^11.1.6",
"prettier": "^3.3.3",
"size-limit": "^11.1.6",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
}
}