-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.01 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
{
"name": "@amitind/util",
"version": "1.1.2",
"description": "Some useful Javascript functions that I use.",
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "vite",
"dev:build": "rimraf dist && pnpm build --watch",
"build": "tsc && vite build",
"test": "echo \"No tests\"",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Amitind/util.git"
},
"keywords": [
"util",
"javascript",
"js",
"utility"
],
"author": "Amit Yadav",
"license": "MIT",
"bugs": {
"url": "https://github.com/Amitind/util/issues"
},
"homepage": "https://www.npmjs.com/package/@amitind/util",
"devDependencies": {
"path": "^0.12.7",
"rimraf": "^6.0.1",
"typescript": "^5.6.3",
"vite": "^5.4.8",
"vite-plugin-dts": "^4.2.4"
}
}