-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.87 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.87 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
{
"name": "@ublitzjs/payload",
"version": "1.0.3",
"types": "./dist/types/index.d.ts",
"files": ["dist"],
"tsd": {
"directory": "tests"
},
"license": "MIT",
"scripts": {
"trick-tsd": "bun link && bun link @ublitzjs/payload",
"build:esm": "tsc -p tsconfig.esm.json && echo '{\"type\": \"module\"}' > dist/esm/package.json",
"build:cjs": "babel dist/esm --out-dir dist/cjs",
"build:types": "tsc -p tsconfig.types.json",
"build": "bun run build:types && bun run build:esm && bun run build:cjs",
"mk-tmp": "node -p 'var fs=require(`fs`);if(fs.existsSync(`tmp`))fs.rmSync(`tmp`,{recursive:true});fs.mkdirSync(`tmp`)'",
"test:base": "tsd && vitest run --coverage tests/vitest/index.test.ts",
"test:load:win32": "powershell -File ./tests/k6/run.ps1",
"test:load": "chmod +x ./tests/k6/run.sh && ./tests/k6/run.sh"
},
"typesVersions": {
"*": {
".": ["./dist/types/index.d.ts"]
}
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"dependencies": {
"@ublitzjs/core": "^1.2.0",
"busboy": "^1.6.0",
"nanoid": "^5.1.6",
"tseep": "^1.3.1"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/plugin-transform-modules-commonjs": "^7.28.6",
"@types/busboy": "^1.5.4",
"@types/k6": "^1.6.0",
"@types/node": "^25.2.1",
"@vitest/coverage-v8": "^4.1.0",
"esbuild": "^0.27.3",
"tsd": "^0.33.0",
"undici": "^7.22.0",
"vitest": "^4.1.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/ublitzjs/payload.git"
},
"bugs": {
"url": "https://github.com/ublitzjs/payload/issues",
"email": "diril656@gmail.com"
},
"homepage": "https://github.com/ublitzjs/payload#readme"
}