-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.55 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
{
"name": "vue-o2c",
"version": "0.1.26",
"description": "Vue Options API to Composition API converter",
"main": "dist/index.js",
"module": "dist/index.mjs",
"bin": "dist/cli.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build-tsup": "rm -rf dist && tsup src/index.ts src/cli.ts --format cjs,esm --dts",
"build": "pnpm run build-tsup && chmod +x dist/cli.js && pnpm run build:browser",
"build:browser": "esbuild --bundle --minify --format=esm --platform=browser src/core.ts --outfile=dist/browser.js",
"prepublishOnly": "pnpm run test && pnpm run build",
"update:readme": "tsx scripts/updateReadme.ts",
"test": "tsx --tsconfig tests/tsconfig.json tests/index.ts"
},
"keywords": [],
"author": "TJ Koblentz",
"license": "MIT",
"devDependencies": {
"@types/diff": "^5.0.3",
"@types/node": "^18.11.3",
"diff": "^5.1.0",
"esbuild": "^0.15.12",
"picocolors": "^1.0.0",
"release-it": "^15.5.0",
"tree-sitter-cli": "^0.20.7",
"tsup": "^6.7.0",
"tsx": "^3.10.4",
"typescript": "^4.8.4",
"web-tree-sitter": "^0.20.7"
},
"dependencies": {
"safe-identifier": "^0.4.2",
"tree-sitter": "^0.20.0",
"tree-sitter-javascript": "^0.19.0",
"tree-sitter-typescript": "^0.20.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tjk/vue-o2c.git"
},
"bugs": {
"url": "https://github.com/tjk/vue-o2c/issues"
},
"homepage": "https://github.com/tjk/vue-o2c#readme",
"peerDependencies": {
"web-tree-sitter": "^0.20.7"
}
}