-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.94 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
65
{
"name": "starknetid.js",
"version": "4.0.3",
"description": "JavaScript library for Starknet ID",
"private": false,
"license": "MIT",
"scripts": {
"build": "pnpm run -r build",
"dev": "pnpm run -r --parallel dev",
"format": "prettier --ignore-path .gitignore --plugin-search-dir=. --write '**/*.{js,cjs,ts,tsx,svelte,md,yml,json}'",
"format:check": "prettier --ignore-path .gitignore --plugin-search-dir=. --check '**/*.{js,cjs,ts,tsx,svelte,md,yml,json}'",
"prepare": "pnpm run build && husky install",
"publish": "pnpm publish -r --no-git-checks",
"version": "changeset version",
"test": "turbo run test --parallel --color",
"lint": "eslint . --cache --fix --ext .ts"
},
"lint-staged": {
"*.{js,cjs,ts,tsx,svelte,md,yml,json}": "prettier --ignore-path .gitignore --plugin-search-dir=. --write"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/plugin-transform-modules-commonjs": "^7.22.5",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@changesets/cli": "^2.26.2",
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@types/jest": "^29.5.3",
"@types/node": "^18.17.1",
"husky": "^8.0.3",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"ts-jest": "^29.1.1",
"turbo": "^1.10.12",
"typescript": "^4.9.5"
},
"jest": {
"testMatch": [
"**/__tests__/**/(*.)+(spec|test).[jt]s?(x)"
],
"setupFilesAfterEnv": [
"./__tests__/jest.setup.ts"
],
"sandboxInjectedGlobals": [
"Math"
]
},
"engines": {
"node": ">=16"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0",
"starknet": "^6.11.0"
},
"files": [
"packages/core/dist",
"README.md"
],
"source": "./packages/core/src/index.ts",
"main": "./packages/core/dist/index.js",
"types": "./packages/core/dist/index.d.ts"
}