-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.87 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
{
"name": "build-output-router",
"version": "0.1.0",
"description": "Router for the Build Output API (v3)",
"license": "MIT",
"author": "James",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./router": {
"import": "./dist/router/index.js",
"require": "./dist/router/index.cjs",
"types": "./dist/router/index.d.ts"
},
"./images": {
"import": "./dist/images/index.js",
"require": "./dist/images/index.cjs",
"types": "./dist/images/index.d.ts"
}
},
"publishConfig": {
"directory": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/james-elicx/build-output-router"
},
"bugs": {
"url": "https://github.com/james-elicx/build-output-router/issues"
},
"homepage": "https://github.com/james-elicx/build-output-router#readme",
"scripts": {
"build": "vite build",
"build:watch": "pnpm run build --watch",
"lint": "eslint \"./**/*.{cjs,js,jsx,ts,tsx}\"",
"prettier": "prettier --ignore-unknown --ignore-path .gitignore --ignore-path .prettierignore --check .",
"prettier:fix": "prettier --ignore-unknown --ignore-path .gitignore --ignore-path .prettierignore --write .",
"ts-check": "tsc --noEmit",
"test": "vitest run --coverage",
"test:watch": "vitest",
"alter-version": "node ./scripts/alter-version.js",
"changeset": "changeset",
"release": "changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@tsconfig/strictest": "^2.0.5",
"@types/cookie": "^0.6.0",
"@types/node": "^22.7.4",
"@vitest/coverage-v8": "^2.1.1",
"eslint": "^8.57.1",
"eslint-config-ixn": "^1.5.3",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vite-plugin-dts": "^4.2.2",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.1"
},
"dependencies": {
"cookie": "0.6.0",
"pcre-to-regexp": "1.1.0"
}
}