-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.18 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
{
"name": "flow-wasm",
"private": true,
"version": "0.0.0",
"main": "./dist/flow-wasm.cjs",
"module": "./dist/flow-wasm.mjs",
"exports": {
".": {
"require": "./dist/flow-wasm.cjs",
"import": "./dist/flow-wasm.mjs"
},
"./dist/": {
"import": "./dist/",
"require": "./dist/"
}
},
"types": "./dist/index.d.ts",
"scripts": {
"dev": "vite --host",
"build": "tsc -p ./ts-lib/tsconfig.json && vite build --config ./ts-lib/vite.config.ts && dts-bundle-generator --config ./ts-lib/dts-bundle-generator.config.ts && mv ./ts-lib/dist/index.d.ts ./dist && rmdir ./ts-lib/dist && copyfiles ./package.json dist && ./build-go.sh",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint:scripts": "eslint . --ext .ts",
"lint:styles": "stylelint ./**/*.{css,scss}",
"format:scripts": "prettier . --write",
"format:styles": "stylelint ./**/*.{css,scss} --fix",
"format": "npm run format:scripts && npm run format:styles",
"prepare": "husky install && husky set .husky/pre-commit 'npx lint-staged' && git add .husky/pre-commit",
"uninstall-husky": "npm uninstall husky --no-save && git config --unset core.hooksPath && npx rimraf .husky"
},
"devDependencies": {
"@types/jsdom": "^21.1.6",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vitest/coverage-v8": "^1.2.1",
"copyfiles": "^2.4.1",
"dts-bundle-generator": "^9.2.4",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"postcss": "^8.4.33",
"postcss-scss": "^4.0.9",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"stylelint": "^16.2.0",
"stylelint-config-recommended": "^14.0.0",
"stylelint-config-sass-guidelines": "^11.0.0",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vite": "^5.3.3",
"vitest": "^1.6.0"
},
"dependencies": {
"@isomorphic-git/lightning-fs": "^4.6.0",
"@onflow/fcl": "^1.11.0",
"@onflow/typedefs": "^1.3.0",
"memfs": "^4.9.3"
}
}