-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (31 loc) · 966 Bytes
/
package.json
File metadata and controls
32 lines (31 loc) · 966 Bytes
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
{
"name": "nextpage-client",
"version": "0.5.0",
"description": "The NextPage Client provides an interface for users to interact with NextPage-enabled pages.",
"main": "build/nextpage-client.min.js",
"browser": "build/nextpage-client.min.js",
"author": "Romeo Pickering <theoromeo@gmail.com> (https://bypickering.com)",
"license": "GPL-3.0",
"type": "module",
"scripts":
{
"tw": "tailwindcss -i ./src/style/main.scss -o ./src/style/main.css --watch",
"tw-examples": "tailwindcss -c ./examples/tailwind.config.js -i ./examples/main.scss -o ./examples/main.css --watch",
"dev": "vite",
"build": "vite build ",
"build-watch": "vite build --watch",
"dev-mode":"npm run dev & npm run build-watch & npm run tw"
},
"devDependencies":
{
"tailwindcss": "^3.4.17",
"vite": "^6.1.0"
},
"keywords": [
"NextPage",
"NextPage-Client",
"web-parser",
"dynamic-content",
"client-interface"
]
}