-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.57 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.57 KB
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
{
"name": "nshot",
"version": "1.0.6",
"description": "Allow users to make screenshots of their screen using a native Screen Capture API",
"packageManager": "pnpm@7.2.1",
"type": "module",
"scripts": {
"dev": "tsup --dts --watch",
"build": "tsup --dts",
"test": "vitest",
"publish": "npm publish"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"jsdom": "^20.0.0",
"pnpm": "^7.3.0",
"rimraf": "^3.0.2",
"tsup": "^6.1.2",
"typescript": "^4.7.4",
"vitest": "^0.15.1"
},
"sideEffects": false,
"files": [
"/dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/index.js",
"default": "./dist/iife/index.js",
"types": "./dist/index.d.ts"
}
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/chameleonmind/nshot.git"
},
"keywords": [
"screenshot",
"screen",
"capture"
],
"author": "Milos Milosevic",
"license": "MIT",
"bugs": {
"url": "https://github.com/chameleonmind/nshot/issues"
},
"homepage": "https://github.com/chameleonmind/nshot#readme"
}