-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.13 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
{
"private": true,
"name": "@taskless/~core",
"description": "",
"version": "1.0.1",
"author": "Taskless",
"license": "MIT",
"scripts": {
"build": "run-s 'build:tsc' 'build:esbuild' 'build:extism' 'build:pack'",
"build:esbuild": "node esbuild.js",
"build:extism": "extism-js dist/index.js -i src/index.d.ts -o dist/plugin.wasm",
"build:pack": "node scripts/packbuild.js",
"build:tsc": "tsc --noEmit",
"prepare": "husky",
"prettier": "prettier",
"syncpack": "syncpack",
"test": "pnpm dlx @taskless/packcheck@latest --fixture ./test/fixture.json --manifest ./dist/manifest.json ./dist/plugin.wasm",
"xo": "xo"
},
"type": "module",
"main": "src/index.ts",
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@extism/js-pdk": "^1.0.1",
"esbuild": "^0.19.6",
"husky": "^9.0.11",
"lint-staged": "^15.2.4",
"npm-run-all2": "^7.0.1",
"prettier": "^3.2.5",
"syncpack": "^12.3.2",
"typescript": "^5.3.2",
"uint8array-extras": "^1.4.0",
"xo": "^0.59.3"
},
"keywords": []
}