-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.8 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.8 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "timefi-protocol",
"version": "1.0.1",
"description": "TimeFi Protocol - Time-locked vaults for disciplined savings on Stacks blockchain.",
"type": "module",
"main": "./index.js",
"exports": {
".": "./index.js"
},
"files": [
"index.js",
"README.md",
"LICENSE"
],
"scripts": {
"contracts:check": "clarinet check",
"contracts:console": "clarinet console",
"check": "npm run contracts:check",
"console": "npm run contracts:console",
"frontend:dev": "npm --prefix frontend run dev",
"frontend:build": "npm --prefix frontend run build",
"frontend:lint": "npm --prefix frontend run lint",
"sdk:build": "npm --prefix sdk run build",
"sdk:test": "npm --prefix sdk run test",
"test": "vitest run",
"test:report": "vitest run --coverage --costs",
"test:watch": "chokidar \"tests/**/*.ts\" \"contracts/**/*.clar\" -c \"npm run test:report\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"verify:local": "npm run contracts:check && npm run sdk:test && npm run frontend:lint",
"prepare": "husky"
},
"author": "adekunlebamz <bams.kunle@gmail.com>",
"engines": {
"node": ">=18.0.0"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/AdekunleBamz/TimeFi-Protocol.git"
},
"homepage": "https://github.com/AdekunleBamz/TimeFi-Protocol#readme",
"bugs": {
"url": "https://github.com/AdekunleBamz/TimeFi-Protocol/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@stacks/clarinet-sdk": "^3.9.0",
"@stacks/transactions": "^7.2.0",
"@types/node": "^24.4.0",
"chokidar-cli": "^3.0.0",
"timefi-sdk": "^0.1.0",
"vitest": "^4.0.7",
"vitest-environment-clarinet": "^3.0.0"
},
"devDependencies": {
"husky": "^9.1.7"
}
}