-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.67 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "js-ast-tokenizer",
"version": "0.0.4",
"description": "A JavaScript code tokenizer for ease in using with code embeddings and vector storage.",
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.esm.js",
"browser": "dist/bundle.umd.js",
"scripts": {
"build": "rollup -c",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "eslint .",
"format": "@biomejs/biome format --write .",
"release": "standard-version && git push --follow-tags origin main && npm publish"
},
"keywords": [
"javascript",
"tokenizer",
"embeddings",
"ast",
"parser",
"code analysis"
],
"author": "Zachary Iles",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zackiles/js-ast-tokenizer.git"
},
"dependencies": {
"@babel/generator": "^7.21.4",
"@babel/parser": "^7.21.4",
"@babel/traverse": "^7.21.4"
},
"devDependencies": {
"@babel/plugin-syntax-import-attributes": "^7.25.7",
"@babel/preset-env": "^7.25.8",
"@biomejs/biome": "^1.9.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^9.12.0",
"husky": "^9.1.6",
"jest": "^29.5.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rollup": "^4.24.0",
"rollup-plugin-polyfill-node": "^0.13.0",
"standard-version": "^9.5.0"
},
"lint-staged": {
"*.{js,css,md}": "@biomejs/biome format --write ."
},
"standard-version": {
"scripts": {
"postchangelog": "git add CHANGELOG.md"
}
}
}