-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.56 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
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
86
87
88
89
90
{
"name": "@maximeij/css-brickout",
"version": "0.17.3",
"type": "module",
"description": "Classic Brickout Game Engine implemented in Typescript and rendered with CSS. No dependencies.",
"author": "Maxime IJ",
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://maximeij.dev/css-brickout",
"keywords": [
"css",
"css-art",
"css-game",
"css-brickout",
"game",
"brickout",
"breakout",
"typescript"
],
"files": [
"dist",
"CHANGELOG.md",
"README.md"
],
"main": "./dist/css-brickout.umd.js",
"module": "./dist/css-brickout.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/css-brickout.js",
"require": "./dist/css-brickout.umd.js",
"types": "./dist/index.d.ts"
},
"./css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"devDependencies": {
"@types/node": "^18.15.13",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@vitest/ui": "^2.1.0",
"auto-changelog": "^2.4.0",
"clean-package": "^2.2.0",
"eslint": "8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jsdom": "^22.1.0",
"prettier": "^3.3.3",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.0",
"vite": "^5.4.0",
"vite-plugin-dts": "^4.3.0",
"vite-plugin-remove-console": "^2.2.0",
"vitest": "^2.1.0"
},
"scripts": {
"build": "vite build",
"build:demo": "vite build -c vite.config.demo.ts",
"custom:publish": "npm publish && npx clean-package restore && git restore . && git push",
"dev": "vite -c vite.config.demo.ts",
"lint": "eslint . --fix && prettier -w .",
"prepublishOnly": "npm run build && npm run test:run && npm run lint && clean-package",
"postversion": "auto-changelog -p && git add CHANGELOG.md && git commit --amend --no-edit",
"publish:major": "npm version major && npm run custom:publish",
"publish:minor": "npm version minor && npm run custom:publish",
"publish:patch": "npm version patch && npm run custom:publish",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run"
},
"repository": {
"type": "git",
"url": "https://github.com/MaximeIJ/css-brickout.git"
},
"publishConfig": {
"access": "public"
},
"clean-package": {
"extends": "clean-package/common",
"remove": [
"clean-package",
"dependencies",
"devDependencies",
"publishConfig",
"scripts"
]
}
}