-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.44 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
{
"name": "roselt-js",
"version": "0.2.0",
"description": "Roselt.js is a vanilla JavaScript SPA framework built on the Navigation API.",
"type": "module",
"main": "./src/index.js",
"bin": {
"roselt": "bin/roselt.js",
"roselt-js": "bin/roselt-js.js"
},
"exports": {
".": "./src/index.js",
"./cli": "./scripts/cli-core.js",
"./dist/roselt.js": "./dist/roselt.js",
"./dist/roselt.min.js": "./dist/roselt.min.js"
},
"files": [
"bin",
"dist",
"examples/starter-app",
"packages/create-roselt",
"src",
"scripts",
"README.md",
"LICENSE"
],
"scripts": {
"build": "node ./scripts/build.js",
"check": "node --check ./bin/roselt.js && node --check ./bin/roselt-js.js && node --check ./scripts/build.js && node --check ./scripts/cli-core.js && node --check ./scripts/cli.js && node --check ./scripts/dev-server.js && node --check ./packages/create-roselt-js/index.js && node --check ./packages/create-roselt/index.js",
"create": "node ./scripts/cli.js create",
"serve": "node ./scripts/dev-server.js",
"serve:example": "node ./scripts/dev-server.js"
},
"devDependencies": {
"esbuild": "^0.28.0"
},
"keywords": [
"spa",
"navigation-api",
"router",
"framework",
"vanilla-js",
"github-pages"
],
"author": "Shaun Roselt",
"repository": {
"type": "git",
"url": "git+https://github.com/ShaunRoselt/Roselt.js.git"
},
"license": "MIT"
}