blob: 4f978ade660b5df2fdec45174c642d020d669a01 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{
"name": "she-code-on-my-pen-til-i",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "mkdir -p dist && cp -a static/* dist/ && esbuild --bundle --sourcemap ./src/index.tsx --outfile=dist/index.js",
"format": "prettier -w --cache ."
},
"dependencies": {
"preact": "^10.20.2"
},
"devDependencies": {
"esbuild": "^0.20.2",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
}
}
|