-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.78 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.78 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
50
51
52
53
54
55
56
57
58
{
"name": "@ratmd/laika",
"version": "0.1.0",
"description": "LAIKA is an Inertia-inspired Vue/Vite adapter which lets you build your entire OctoberCMS theme in Vue while still using everything October provides (This package provides the related Vue / Vite libraries).",
"keywords": [
"octobercms"
],
"homepage": "https://github.com/ratmd/laika.js",
"license": "MIT",
"author": "Sam <sam@rat.md> (https://rat.md)",
"bugs": {
"url": "https://www.github.com/ratmd/laika.js",
"email": "sam@pytes.net"
},
"repository": {
"type": "git",
"url": "https://github.com/ratmd/laika.js"
},
"type": "module",
"main": "./dist/laika.cjs",
"module": "./dist/laika.js",
"types": "./dist/laika.d.ts",
"exports": {
".": {
"types": "./dist/laika.d.ts",
"import": "./dist/laika.mjs",
"require": "./dist/laika.cjs"
},
"./vite": {
"types": "./dist/vite.d.ts",
"import": "./dist/vite.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && rollup -c",
"watch": "rollup -c -w",
"type-check": "tsc --noEmit -p tsconfig.json --composite false",
"prepare": "npm run build"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^24.8.0",
"@vue/runtime-core": "^3.5.27",
"rimraf": "^6.1.2",
"rollup": "^4.53.3",
"rollup-plugin-dts": "^6.2.3",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vue": "^3.5.28"
}
}