-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.62 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.62 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@lightningjs/blits",
"version": "1.51.0",
"description": "Blits: The Lightning 3 App Development Framework",
"bin": "bin/index.js",
"exports": {
".": "./index.js",
"./vite": "./vite/index.js",
"./transitions": "./src/router/transitions/index.js",
"./precompiler": "./src/lib/precompiler/precompiler.js",
"./plugins": {
"types": "./src/plugins/index.d.ts",
"default": "./src/plugins/index.js"
},
"./plugins/language": {
"types": "./src/plugins/language.d.ts",
"default": "./src/plugins/language.js"
},
"./plugins/theme": {
"types": "./src/plugins/theme.d.ts",
"default": "./src/plugins/theme.js"
},
"./plugins/appstate": {
"types": "./src/plugins/appstate.d.ts",
"default": "./src/plugins/appstate.js"
},
"./plugins/storage": {
"types": "./src/plugins/storage/storage.d.ts",
"default": "./src/plugins/storage/storage.js"
},
"./symbols": "./src/lib/symbols.js",
"./blitsFileConverter": "./src/lib/blitsfileconverter/blitsfileconverter.js",
"./components": "./src/components/FPScounter.js"
},
"scripts": {
"test": "c8 node scripts/runTests.js",
"test:ci": "c8 npm run test:run",
"test:run": "node -r global-jsdom/register ./node_modules/.bin/tape '{,!(node_modules|packages)/**/}*.test.js' | tap-diff",
"lint": "node scripts/lint.js",
"lint:fix": "node scripts/lint.js fix",
"prepublishOnly": "node scripts/prepublishOnly.js",
"postpublish": "node scripts/postpublish.js",
"prepare": "husky",
"pack-preview": "npm pack --dry-run",
"release": "npm publish --access public"
},
"types": "./index.d.ts",
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"type": "module",
"author": "Michiel van der Geest <hello@michielvandergeest.com>",
"license": "Apache-2.0",
"devDependencies": {
"@babel/eslint-parser": "^7.26.5",
"@babel/plugin-syntax-import-assertions": "^7.26.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.33.0",
"c8": "^9.1.0",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"fast-glob": "^3.3.3",
"global-jsdom": "24.0.0",
"globals": "^16.3.0",
"husky": "^9.1.7",
"jsdom": "24.0.0",
"lint-staged": "^15.5.0",
"prettier": "^3.6.2",
"sinon": "^21.0.0",
"tap-diff": "^0.1.1",
"tape": "^5.5.0"
},
"dependencies": {
"@lightningjs/msdf-generator": "^1.2.0",
"@lightningjs/renderer": "^2.23.0",
"magic-string": "^0.30.21"
},
"repository": {
"type": "git",
"url": "https://github.com/lightning-js/blits.git"
}
}