-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.67 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.67 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
59
60
61
62
63
64
65
66
67
{
"name": "@devansharora18/tardisjs",
"version": "0.0.15",
"description": "Smaller on the outside. A ~5KB jQuery-inspired frontend framework.",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"tardis": "./dist/bin/tardis.js",
"create-tardis-app": "./dist/bin/create-tardis-app.js"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./runtime": {
"import": "./dist/runtime/index.mjs",
"require": "./dist/runtime/index.cjs"
}
},
"scripts": {
"clean": "rm -rf dist",
"build:lib": "rollup -c",
"build:bin": "rollup -c rollup.cli.config.js && chmod +x dist/bin/tardis.js dist/bin/create-tardis-app.js",
"build": "npm run clean && npm run build:lib && npm run build:bin",
"test": "vitest run",
"test:watch": "vitest",
"dev": "rollup -c --watch",
"typecheck": "tsc --noEmit",
"publish:check": "npm run build && npm run typecheck && npm test && npm pack --dry-run",
"prepublishOnly": "npm run publish:check"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"frontend",
"framework",
"jquery",
"blueprints",
"reactive",
"no-vdom",
"components",
"tardis",
"doctor-who"
],
"author": "devansharora18",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-typescript": "^11.0.0",
"@types/ws": "^8.18.1",
"jsdom": "^29.0.1",
"rollup": "^4.0.0",
"tslib": "^2.0.0",
"vitest": "^1.0.0"
},
"dependencies": {
"chokidar": "^3.0.0",
"commander": "^12.0.0",
"typescript": "^5.0.0",
"ws": "^8.20.0"
}
}