-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.63 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
{
"name": "@nxtlvlsoftware/alpine-typescript",
"description": "Write your Alpine.js components in Typescript.",
"version": "0.0.4",
"license": "MIT",
"author": {
"name": "Jack Noordhuis",
"email": "[email protected]",
"url": "https://jacknoordhuis.net"
},
"keywords": [
"alpine",
"alpine.js",
"typescript",
"components"
],
"repository": "NxtLvlSoftware/alpine-typescript",
"homepage": "https://nxtlvlsoftware.github.io/alpine-typescript/",
"bugs": {
"url": "https://github.com/NxtLvlSoftware/alpine-typescript/issues"
},
"type": "module",
"main": "dist/index.js",
"types": "types/index.d.ts",
"files": [
"README.md",
"LICENSE",
"dist/**/*.js",
"types/**/*.d.ts"
],
"scripts": {
"clean-install": "rm -f ./package-lock.json && rm -rf ./node_modules && npm install",
"setup-dev": "npm run clean-install && npm run build",
"clean": "rm -rf ./dist && rm -rf ./types && rm -rf ./docs-build",
"build": "npm run clean && tsc --build tsconfig.json --inlineSourceMap",
"dev": "npm run build -- --watch",
"build-dist": "npm run build -- --inlineSourceMap --listEmittedFiles",
"docs": "npx typedoc",
"docs-dist": "npm run docs -- --gitRevision dist",
"setup-examples": "cd examples/package && npm run setup-dev && cd ../project && npm run setup-dev",
"build-examples": "cd examples/package && npm run build && cd ../project && npm run build"
},
"peerDependencies": {
"alpinejs": "^3.0.0"
},
"devDependencies": {
"@types/alpinejs": "^3.0.0",
"typedoc": "^0.25.1",
"typedoc-plugin-extras": "^3.0.0",
"typescript": "^5.2.2"
}
}