-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
62 lines (62 loc) · 1.55 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
{
"name": "@fireworks-js/monorepo",
"version": "2.10.8",
"private": true,
"type": "module",
"description": "A simple fireworks library!",
"homepage": "https://fireworks.js.org",
"packageManager": "[email protected]",
"workspaces": [
"packages/*",
"examples/*",
"website"
],
"scripts": {
"dev": "turbo run dev --filter=./packages/*",
"build": "turbo run build --filter=./packages/*",
"dev:website": "turbo run dev --filter=./website",
"build:website": "turbo run build --filter=./website",
"dev:examples": "turbo run dev --filter=./examples/*",
"build:examples": "turbo run build --filter=./examples/*",
"format": "prettier --write --ignore-unknown **",
"changesets": "changeset"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crashmax-dev/fireworks-js.git"
},
"keywords": [
"react",
"preact",
"solid",
"vue",
"angular",
"svelte",
"web-components",
"canvas",
"fireworks",
"animation"
],
"author": {
"name": "Vitalij Ryndin",
"email": "[email protected]",
"url": "https://crashmax.ru"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/crashmax-dev/fireworks-js/issues"
},
"devDependencies": {
"@changesets/cli": "2.27.7",
"@crashmax/prettier-config": "5.0.2",
"@crashmax/tsconfig": "2.1.0",
"@types/node": "20.14.10",
"del-cli": "5.1.0",
"tsx": "4.16.2",
"turbo": "2.0.6",
"typescript": "5.5.3",
"vite": "5.3.3",
"vite-plugin-banner": "0.7.1",
"vite-plugin-dts": "3.9.1"
}
}