-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
123 lines (123 loc) · 2.89 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "fireworks-canvas",
"version": "2.6.1",
"description": "fireworks example",
"browser": "./fireworks.min.js",
"main": "./fireworks.cjs.js",
"module": "./fireworks.mjs",
"types": "./fireworks.d.ts",
"scripts": {
"build": "rollup -c",
"start": "cross-env NODE_ENV=development npm run build -- -w",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext js"
},
"files": [
"fireworks.d.ts",
"fireworks.min.js",
"fireworks.js",
"fireworks.mjs",
"fireworks.cjs.js",
"README.MD",
"LICENSE",
"package.json"
],
"author": {
"name": "Tyler Waters",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/tswaters/fireworks.git"
},
"contributors": [
"Andrey (https://github.com/tugrik)",
"Kyle Cutler (https://github.com/kyle1320/)",
"Aditya Satnur (https://github.com/adityasatnur)",
"Thomas Dailey (https://github.com/daileytj)"
],
"license": "WTFPL",
"devDependencies": {
"@rollup/plugin-html": "^1.0.3",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"rollup": "^4.12.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-html2": "^4.0.0",
"rollup-plugin-serve": "^1.1.1",
"tslib": "^2.2.0",
"typescript": "^5.3.3",
"typescript-eslint": "^7.0.1"
},
"eslintIgnore": [
"dist",
"examples",
"gh-pages",
"node_modules"
],
"eslintConfig": {
"root": true,
"extends": [
"eslint:recommended"
],
"env": {
"es6": true,
"browser": true
},
"overrides": [
{
"files": [
"**/*.ts",
"**/*.tsx"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2019,
"project": "./tsconfig.json"
},
"extends": [
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
"rules": {
"@typescript-eslint/member-delimiter-style": [
2,
{
"multiline": {
"delimiter": "none",
"requireLast": false
}
}
]
}
},
{
"files": "rollup.config.js",
"parserOptions": {
"sourceType": "module"
},
"env": {
"node": true
},
"rules": {
"@typescript-eslint/*": "off"
}
}
]
},
"prettier": {
"semi": false,
"singleQuote": true
}
}