-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.74 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.74 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
{
"private": true,
"name": "@taskless/~core",
"description": "Core APM telemetry plugin for Taskless",
"version": "0.0.8",
"author": "Taskless",
"license": "MIT",
"scripts": {
"build": "run-s 'build:tsc' 'build:esbuild' 'build:extism' 'build:pack' 'build:bundle'",
"build:bundle": "pnpm dlx @taskless/pack@latest bundle --manifest ./dist/manifest.json --wasm ./dist/pack.wasm --out ./dist",
"build:esbuild": "node esbuild.js",
"build:extism": "extism-js dist/index.js -i src/index.d.ts -o dist/pack.wasm",
"build:pack": "tsx scripts/packbuild.ts",
"build:tsc": "tsc --noEmit",
"prepare": "husky",
"prettier": "prettier",
"push": "pnpm dlx @taskless/pack@latest publish --manifest ./dist/manifest.json --wasm ./dist/pack.wasm --env ./.env.publish.local",
"syncpack": "syncpack",
"test": "pnpm dlx @taskless/pack@latest check --fixture ./test/fixture.json --manifest ./dist/manifest.json --wasm ./dist/pack.wasm",
"tsx": "tsx",
"xo": "xo"
},
"type": "module",
"main": "src/index.ts",
"dependencies": {
"zod": "^3.24.2"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@extism/js-pdk": "^1.1.1",
"@taskless/loader": "^0.0.38",
"@types/node": "^22.13.5",
"esbuild": "^0.19.6",
"husky": "^9.0.11",
"json-schema-to-typescript": "^15.0.4",
"lint-staged": "^15.2.4",
"mkdirp": "^3.0.1",
"npm-run-all2": "^7.0.1",
"pkg-dir": "^8.0.0",
"prettier": "^3.2.5",
"rimraf": "^6.0.1",
"syncpack": "^12.3.2",
"tsx": "^4.19.3",
"type-fest": "^4.37.0",
"typescript": "^5.8.2",
"uint8array-extras": "^1.4.0",
"xo": "^0.59.3"
},
"keywords": []
}