-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 900 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 900 Bytes
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
{
"name": "file-server-example",
"version": "0.0.0",
"description": "File Server Example",
"homepage": "https://github.com/functionalscript/file-server-example#readme",
"bugs": {
"url": "https://github.com/functionalscript/file-server-example/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/functionalscript/file-server-example.git"
},
"license": "MIT",
"author": "Sergey Shandar",
"type": "module",
"main": "server.f.ts",
"scripts": {
"test": "tsc && fjs t",
"start": "fjs r ./server.f.ts",
"update": "npx npm-check-updates -u && npm install && deno install && bun install && fjs i",
"cov": "node --test --experimental-test-coverage --test-coverage-include=**/*.f.ts"
},
"dependencies": {
"functionalscript": "0.29.0"
},
"devDependencies": {
"@playwright/test": "1.60.0",
"typescript": "6.0.3"
}
}