-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 999 Bytes
/
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
{
"name": "vite-plugin-ink",
"type": "module",
"version": "0.1.3",
"description": "A Vite plugin to compile and hot-reload Inkle's ink files",
"author": "Florian Cargoët",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/floriancargoet/vite-plugin-ink.git"
},
"keywords": [
"vite-plugin",
"ink",
"inkle"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./client": {
"types": "./ink.d.ts"
}
},
"files": [
"dist",
"ink.d.ts"
],
"scripts": {
"build": "rm -rf dist; tsc",
"version": "npm run build && git add -A .",
"postversion": "git push && git push --tags"
},
"peerDependencies": {
"inkjs": "2.2.2"
},
"devDependencies": {
"inkjs": "2.2.2",
"@types/node": "20.9.4",
"typescript": "5.3.2",
"vite": "5.0.2"
}
}