Skip to content

Commit d939088

Browse files
author
Alexandre van Beurden
committed
Update
1 parent 235c911 commit d939088

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ npm install regexsolver
1818
In order to use the library you need to generate an API Token on our [Developer Console](https://console.regexsolver.com/).
1919

2020
```javascript
21-
import { RegexSolver } from 'regexsolver';
22-
import { Term } from 'regexsolver';
21+
import { RegexSolver, Term } from 'regexsolver';
2322

2423
async function main() {
2524
RegexSolver.initialize("YOUR TOKEN HERE");
@@ -35,5 +34,4 @@ async function main() {
3534

3635
console.log(result.toString());
3736
}
38-
3937
```

package.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,20 @@
2727
"author": "RegexSolver",
2828
"license": "MIT",
2929
"description": "RegexSolver allows you to manipulate regular expressions as sets, enabling operations such as intersection, union, and subtraction.",
30+
"repository": {
31+
"type": "git",
32+
"url": "git+https://github.com/RegexSolver/regexsolver-js.git"
33+
},
34+
"bugs": {
35+
"url": "https://github.com/RegexSolver/regexsolver-js/issues"
36+
},
3037
"dependencies": {
3138
"axios": "^1.7.3"
3239
},
3340
"devDependencies": {
3441
"@types/jest": "^29.5.12",
3542
"jest": "^29.7.0",
36-
"nock": "^13.5.4"
43+
"nock": "^13.5.4",
44+
"typescript": "^5.5.4"
3745
}
3846
}

0 commit comments

Comments
 (0)