-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.06 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.06 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
{
"name": "safe-formdata",
"version": "0.2.2",
"description": "Boundary-focused FormData parser with strict security guarantees",
"keywords": [
"boundary",
"formdata",
"parser",
"prototype-pollution",
"security"
],
"homepage": "https://github.com/roottool/safe-formdata#readme",
"bugs": {
"url": "https://github.com/roottool/safe-formdata/issues"
},
"license": "MIT",
"author": "roottool",
"repository": {
"type": "git",
"url": "git+https://github.com/roottool/safe-formdata.git"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"imports": {
"#*": {
"types": "./src/*.ts",
"import": "./src/*.ts",
"default": "./src/*.ts"
},
"#safe-formdata": "./src/index.ts"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"scripts": {
"dev": "tsup --watch",
"lint": "oxlint . --deny-warnings",
"lint:fix": "oxlint . --fix-suggestions",
"format": "oxfmt",
"fix": "npm-run-all2 lint:fix format",
"check:format": "oxfmt --check",
"check:source": "npm-run-all2 lint check:format",
"check": "bun run check:source",
"check:type:source": "tsc --noEmit",
"check:type:example": "tsc --project tsconfig.examples.json --noEmit",
"check:type": "npm-run-all2 check:type:source check:type:example",
"check:source:ci": "npm-run-all2 lint check:format",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"build": "tsup",
"check:package": "publint && attw --pack . --ignore-rules cjs-resolves-to-esm",
"prepare:publish": "npm-run-all2 check:type:source test:coverage build check:package"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.2",
"@types/node": "25.0.3",
"@vitest/coverage-v8": "4.0.16",
"happy-dom": "20.0.11",
"npm-run-all2": "8.0.4",
"oxfmt": "0.35.0",
"oxlint": "1.34.0",
"publint": "0.3.16",
"terser": "5.44.1",
"tsup": "8.5.1",
"typescript": "5.9.3",
"vitest": "4.0.16"
}
}