-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.66 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.66 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
{
"private": true,
"name": "@taskless/~pack-example",
"description": "An example pack for Taskless",
"version": "0.0.6",
"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",
"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",
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@extism/js-pdk": "^1.1.1",
"@taskless/loader": "0.0.38",
"@types/node": "^22.16.0",
"esbuild": "^0.19.12",
"husky": "^9.1.7",
"json-schema-to-typescript": "^15.0.4",
"lint-staged": "^15.5.2",
"mkdirp": "^3.0.1",
"npm-run-all2": "^7.0.2",
"pkg-dir": "^8.0.0",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"syncpack": "^12.4.0",
"tsx": "^4.20.3",
"type-fest": "^4.41.0",
"typescript": "^5.8.3",
"uint8array-extras": "^1.4.0",
"xo": "^0.59.3"
},
"keywords": []
}