-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.14 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
{
"type": "module",
"name": "prime_detector",
"version": "0.69.103",
"repository": {
"type": "git",
"url": "https://github.com/SuperioOne/prime_detector"
},
"homepage": "https://github.com/SuperioOne/prime_detector",
"description": "User detection system by observing specific text selection behavior. Potentially breaches GDPR.",
"author": "Timur Olur",
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"build": "tsc --emitDeclarationOnly && esbuild ./index.js --outfile=./dist/prime_detector.cjs --format=cjs && esbuild ./index.js --outfile=./dist/prime_detector.js --format=esm && esbuild index.js --global-name='prime_detector' --bundle --minify --target=chrome98,firefox98 --outfile=./dist/prime_detector.min.js"
},
"main": "./dist/prime_detector.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"default": "./dist/prime_detector.js",
"types": "./dist/index.d.ts"
},
"require": {
"default": "./dist/prime_detector.cjs",
"types": "./dist/index.d.ts"
}
}
},
"devDependencies": {
"esbuild": "^0.21.3",
"typescript": "^5.4.5"
}
}