-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.39 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.39 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
{
"name": "scrype",
"version": "1.2.4",
"description": "Scrype allows you to present code snippet in a interesting way",
"exports": {
".": {
"import": "./dist/scrype.esm.js",
"require": "./dist/scrype.cjs.js",
"types": "./dist/types/index.d.ts"
},
"./themes/*": "./dist/themes/*"
},
"scripts": {
"start": "rollup -c configs/rollup.config.dev.mjs -w",
"build": "rollup -c configs/rollup.config.mjs",
"lint": "eslint --ext .ts,.mjs ./",
"lint:fix": "eslint --ext .ts,.mjs --fix ./",
"test": "echo \"Error: no test specified\" && exit 1",
"release": "npm run build && npm publish --access public"
},
"keywords": [
"scroll",
"scrype"
],
"repository": {
"type": "git",
"url": "https://github.com/DevChanQ/Scrype.git"
},
"author": "DevJeff",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.38.0",
"@rollup/plugin-commonjs": "^28.0.8",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/minimatch": "3.0.5",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"glob": "^11.0.3",
"rollup": "^4.52.5",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2"
},
"dependencies": {
"highlight.js": "^11.11.1"
}
}