-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 891 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 891 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
31
32
33
34
35
36
37
38
39
{
"name": "@cher-ami/utils",
"version": "1.4.1",
"description": "Browser and node utils library",
"author": "Willy Brauner",
"type": "module",
"license": "MIT",
"main": "dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"private": false,
"sideEffects": false,
"repository": {
"type": "git",
"url": "git://github.com/cher-ami/utils.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -rf dist",
"build": "tsup",
"build:watch": "tsup --watch --sourcemap",
"test:watch": "vitest",
"test": "vitest run",
"pre-publish": "npm run build && npm run test"
},
"devDependencies": {
"@types/node": "^20.5.7",
"prettier": "^3.0.3",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vitest": "^0.34.3",
"jsdom": "^22.1.0"
},
"prettier": {
"semi": false
}
}