-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.03 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.03 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
{
"name": "@aeternity/superhero-utils",
"version": "0.6.0",
"description": "",
"main": "dist/index.js",
"browser": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist",
"src"
],
"type": "module",
"devDependencies": {
"prettier": "^3.6.2",
"sass-embedded": "^1.93.2",
"serve": "^14.2.5",
"vite": "^7.1.10"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write .",
"lint": "prettier --check .",
"start": "npm run build && npm run build:examples && serve examples",
"build": "vite build",
"build:examples": "npm run --prefix examples/react-vite build && npm run --prefix examples/vue-vite build",
"watch": "vite build --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aeternity/superhero-utils.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aeternity/superhero-utils/issues"
},
"homepage": "https://github.com/aeternity/superhero-utils#readme"
}