-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.9 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
66
67
68
69
70
{
"name": "@grainular/nord",
"version": "1.7.5",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/types/index.d.ts"
},
"types": "dist/types/index.d.ts",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^20.11.5",
"alex": "^11.0.0",
"ava": "^6.1.0",
"byndly": "^1.2.0",
"c8": "^9.1.0",
"esbuild": "^0.20.0",
"husky": "^9.0.6",
"prettier": "^2.8.0",
"pretty-quick": "^3.3.1",
"rollup": "^4.9.2",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-esbuild": "^6.1.0",
"semantic-release": "^23.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"scripts": {
"preci": "rm -rf node_modules",
"ci": "yarn install --frozen-lockfile",
"reset": "node ./reset.js",
"setup": "npx husky install",
"build": " rollup -c .config/rollup.config.js",
"dev": "yarn build --watch",
"lint": "alex .",
"semantic-release": "semantic-release --branches release",
"test": "ava --verbose",
"test:coverage": "c8 yarn run test",
"serve": "yarn byndly --config=.config/byndly.config.mjs"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--no-warnings",
"--loader=ts-node/esm",
"--experimental-specifier-resolution=node"
]
},
"unpkg": "./dist/index.browser.min.js",
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/Grainular-Nord/nord.git",
"author": "Sebastian <[email protected]>",
"resolutions": {
"wrap-ansi": "7.0.0",
"string-width": "4.1.0"
}
}