-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
34 lines (34 loc) · 1.08 KB
/
package.json
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
{
"name": "css-pokemon-gameboy",
"description": "A small CSS-framework based on the original Pokémon games for the Game Boy.",
"private": true,
"version": "0.6.0",
"type": "module",
"author": {
"name": "Lutt.online"
},
"license": "Unlicense",
"repository": "https://github.com/luttje/css-pokemon-gameboy",
"scripts": {
"dev": "vite --config vite.demo.config.js",
"build": "tsc && vite build --config vite.demo.config.js",
"preview": "vite preview --config vite.demo.config.js",
"build:css": "tsc && vite build --config vite.lib.config.js",
"build:css:full": "tsc && vite build --config vite.lib.full.config.js",
"licenses": "npx license-checker-rseidelsohn --plainVertical --excludePackages css-pokemon-gameboy --out LICENSES-THIRD-PARTY.md"
},
"files": [
"dist-lib/css-pokemon-gameboy.css"
],
"devDependencies": {
"@types/prismjs": "^1.26.4",
"license-checker-rseidelsohn": "^4.2.0",
"sass": "^1.77.8",
"typescript": "^5.2.2",
"vite": "^5.4.8"
},
"dependencies": {
"prismjs": "^1.29.0",
"redent": "^4.0.0"
}
}