-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.02 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@taskless/loader",
"description": "Taskless Loader - Take control of your third party APIs",
"version": "0.0.26",
"author": "Taskless",
"license": "Apache-2.0",
"repository": "taskless/loader-js",
"scripts": {
"build": "vite build",
"changeset": "changeset",
"codegen": "tsx scripts/generate.ts",
"husky": "husky",
"lint-staged": "lint-staged",
"packcheck": "tsx scripts/packcheck.ts",
"prepare": "husky",
"prettier": "prettier",
"syncpack": "syncpack",
"test": "NODE_OPTIONS='--no-warnings' vitest",
"xo": "xo"
},
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./core": {
"types": "./dist/core.d.ts",
"import": "./dist/core.js",
"require": "./dist/core.cjs"
}
},
"files": [
"dist",
"src",
"README.md",
"LICENSE",
"package.json",
"wasm"
],
"dependencies": {
"@extism/extism": "2.0.0-rc9",
"fets": "^0.8.2",
"msw": "^2.3.5",
"pkg-dir": "^8.0.0",
"uint8array-extras": "^1.4.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@hono/node-server": "^1.13.1",
"@types/node": "^20.12.12",
"@types/uuid": "^10.0.0",
"execa": "^9.3.0",
"get-port": "^7.1.0",
"hono": "^4.6.3",
"husky": "^9.0.11",
"json-schema-to-typescript": "^15.0.3",
"lint-staged": "^15.2.4",
"mkdirp": "^3.0.1",
"prettier": "^3.2.5",
"rimraf": "^6.0.1",
"syncpack": "^12.3.2",
"tsx": "^4.16.5",
"type-fest": "^4.23.0",
"typescript": "^5.4.5",
"vite": "^5.4.2",
"vite-plugin-dts": "^4.0.3",
"vite-plugin-externalize-deps": "^0.8.0",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.0.5",
"xo": "^0.59.3"
},
"publishConfig": {
"access": "public"
},
"keywords": []
}